mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-08 16:37:15 +00:00
11 lines
179 B
Vue
Executable file
11 lines
179 B
Vue
Executable file
<script>
|
|
import BaseComponent from 'primevue/basecomponent';
|
|
|
|
export default {
|
|
name: 'Row',
|
|
extends: BaseComponent,
|
|
render() {
|
|
return null;
|
|
}
|
|
};
|
|
</script>
|