36 lines
725 B
Vue
36 lines
725 B
Vue
<template>
|
|
<div class="dashboard-container">
|
|
<component v-bind:is="currentRole"> </component>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex';
|
|
import EditorDashboard from './editor/index';
|
|
import DefaultDashboard from './default/index';
|
|
|
|
export default {
|
|
name: 'dashboard',
|
|
components: { EditorDashboard, DefaultDashboard },
|
|
data() {
|
|
return {
|
|
currentRole: 'EditorDashboard'
|
|
}
|
|
},
|
|
computed: {
|
|
...mapGetters([
|
|
'name',
|
|
'avatar',
|
|
'introduction',
|
|
'roles'
|
|
])
|
|
},
|
|
created() {
|
|
if (this.roles.indexOf('admin') >= 0) {
|
|
return;
|
|
}
|
|
this.currentRole = 'DefaultDashboard';
|
|
}
|
|
}
|
|
</script>
|