mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
16 lines
281 B
Vue
16 lines
281 B
Vue
<template>
|
|
<div id="app">
|
|
<default-layout v-if="$store.state.token" />
|
|
<router-view v-else></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import defaultLayout from '@/layouts/defaultLayout.vue'
|
|
|
|
export default {
|
|
name: 'app',
|
|
components: { defaultLayout },
|
|
}
|
|
</script>
|