layout, mdi, static menu & page, font, ...

This commit is contained in:
2023-01-30 16:34:20 +01:00
parent 3e791910cc
commit a8883be9b7
32 changed files with 2242 additions and 47 deletions

View File

@@ -4,7 +4,7 @@
import { onMounted } from 'vue';
import { RouterLink, RouterView } from 'vue-router'
import { UserStore } from '@/stores/user'
import UserBlock from '@components/block/UserBlock.vue'
import Header from '@components/Header.vue'
const userStore = UserStore()
@@ -18,12 +18,11 @@
</script>
<template>
<header>
<h1> atterrir</h1>
<UserBlock/>
</header>
<RouterView />
<Header />
<div id="main-content">
<RouterView />
</div>
</template>
<style scoped>
<style lang="scss" scoped>
</style>