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

14 lines
202 B
Vue
Raw Normal View History

2019-10-16 03:50:25 +00:00
<script>
export default {
name: 'columngroup',
props: {
type: {
type: String,
default: null
}
},
2020-09-23 17:55:00 +00:00
render() {
return null;
2019-10-16 03:50:25 +00:00
}
}
</script>