16 lines
268 B
Vue
16 lines
268 B
Vue
<template>
|
|
<div class="dashboard-container">
|
|
<!-- <component :is="currentRole" /> -->
|
|
<admin-dashboard />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import AdminDashboard from './admin'
|
|
|
|
export default {
|
|
name: 'Dashboard',
|
|
components: { AdminDashboard }
|
|
}
|
|
</script>
|