This repository has been archived on 2020-11-22. You can view files and clone it, but cannot push or open issues/pull-requests.
mangareader/frontend/src/components/List.vue

13 lines
142 B
Vue

<template>
<div class="list">
<slot></slot>
</div>
</template>
<style scoped>
.list {
display: flex;
flex-wrap: wrap;
}
</style>