join_admin/src/views/dashboard/index.vue
Lukas Bachschwell d9de904c64
All checks were successful
continuous-integration/drone/push Build is passing
Adjust size
2020-04-09 16:05:36 +02:00

38 lines
724 B
Vue

<template>
<div class="dashboard-container">
<button v-if="false" @click="open">Game</button>
<component :is="currentRole" />
</div>
</template>
<script>
import { mapGetters } from 'vuex'
import adminDashboard from './admin'
import editorDashboard from './editor'
export default {
name: 'Dashboard',
components: { adminDashboard, editorDashboard },
data() {
return {
currentRole: 'adminDashboard'
}
},
computed: {
...mapGetters([
'roles'
])
},
created() {
if (!this.roles.includes('admin')) {
this.currentRole = 'editorDashboard'
}
},
methods: {
open() {
window.open('/#/draggame/index', '', '"width=800,height=900"')
}
}
}
</script>