vuetify-demo/src/views/dashboard/components/core/View.vue

18 lines
256 B
Vue

<template>
<v-content>
<router-view />
<dashboard-core-footer />
</v-content>
</template>
<script>
export default {
name: 'DashboardCoreView',
components: {
DashboardCoreFooter: () => import('./Footer'),
},
}
</script>