primevue-mirror/src/components/columngroup/ColumnGroup.vue

30 lines
439 B
Vue
Raw Normal View History

2019-10-16 03:50:25 +00:00
<template>
<div>
<slot></slot>
</div>
</template>
<script>
export default {
name: 'columngroup',
props: {
type: {
type: String,
default: null
}
},
data() {
return {
_rows: null
};
},
mounted() {
this._rows = this.$children;
},
computed: {
rows() {
return this._rows;
}
}
}
</script>