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

15 lines
204 B
Vue
Raw Normal View History

2022-09-06 12:03:37 +00:00
<script>
export default {
name: 'ColumnGroup',
props: {
type: {
type: String,
default: null
}
},
render() {
return null;
}
2022-09-14 11:26:01 +00:00
};
2022-09-06 12:03:37 +00:00
</script>