24 lines
306 B
Vue
24 lines
306 B
Vue
<template>
|
|
<DashboardView :name="name" />
|
|
</template>
|
|
|
|
<script>
|
|
import DashboardView from '@/views/Dashboard'
|
|
|
|
export default {
|
|
name: 'Dashboard',
|
|
|
|
components: {
|
|
DashboardView,
|
|
},
|
|
|
|
props: {
|
|
name: {
|
|
type: String,
|
|
required: false,
|
|
default: 'main',
|
|
},
|
|
},
|
|
}
|
|
</script>
|