2
0
mirror of https://github.com/frappe/books.git synced 2025-01-27 09:08:24 +00:00
books/src/pages/ListView/ListRow.vue

24 lines
359 B
Vue
Raw Normal View History

<template>
2019-10-05 01:48:10 +05:30
<div class="grid border-b" :style="style">
<slot></slot>
</div>
</template>
2019-10-04 23:30:51 +05:30
<script>
export default {
name: 'ListRow',
props: {
columnCount: {
type: Number,
default: 1
}
},
computed: {
style() {
return {
'grid-template-columns': `repeat(${this.columnCount}, 1fr)`
}
}
}
}
2019-10-04 23:30:51 +05:30
</script>