mirror of
https://github.com/creativetimofficial/vue-material-kit.git
synced 2025-06-07 15:44:21 +08:00
23 lines
328 B
Vue
23 lines
328 B
Vue
<template>
|
|
|
|
|
|
<div class="dashboard-page">
|
|
<div class="row">
|
|
<div class="col-3">
|
|
<Sidebar />
|
|
</div>
|
|
<div class="col-9">
|
|
<router-view />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
import Sidebar from './SideNavAdmin.vue';
|
|
|
|
export default {
|
|
components: { Sidebar }
|
|
}
|
|
</script> |