mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
14 lines
204 B
Vue
Executable file
14 lines
204 B
Vue
Executable file
<script>
|
|
export default {
|
|
name: 'ColumnGroup',
|
|
props: {
|
|
type: {
|
|
type: String,
|
|
default: null
|
|
}
|
|
},
|
|
render() {
|
|
return null;
|
|
}
|
|
};
|
|
</script>
|