mirror of
https://github.com/frappe/books.git
synced 2025-01-26 16:48:28 +00:00
24 lines
359 B
Vue
24 lines
359 B
Vue
<template>
|
|
<div class="grid border-b" :style="style">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'ListRow',
|
|
props: {
|
|
columnCount: {
|
|
type: Number,
|
|
default: 1
|
|
}
|
|
},
|
|
computed: {
|
|
style() {
|
|
return {
|
|
'grid-template-columns': `repeat(${this.columnCount}, 1fr)`
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|