2
0
mirror of https://github.com/frappe/books.git synced 2025-01-28 17:48:37 +00:00
books/src/pages/ListView/ListRow.vue

29 lines
411 B
Vue
Raw Normal View History

<template>
2019-10-04 23:30:51 +05:30
<div class="list-row 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>
<style>
.list-row {
display: grid;
}
</style>