2
0
mirror of https://github.com/frappe/books.git synced 2025-01-10 18:24:40 +00:00
books/src/pages/ListView/ListCell.vue
Faris Ansari fa12e0f1d6 Initialize new theme and pages from scratch
- Add ListView and FormView
2018-10-11 00:21:03 +05:30

11 lines
125 B
Vue

<template>
<div class="col">
<slot></slot>
</div>
</template>
<script>
export default {
props: ['col']
}
</script>