import { ref } from 'vue'; import LayoutComponent from './layout.vue'; export default { id: 'custom', name: 'Custom', icon: 'box', component: LayoutComponent, slots: { options: () => null, sidebar: () => null, actions: () => null, }, setup() { const name = ref('Custom Layout'); return { name }; }, };