switch front to typescript

This commit is contained in:
grimhilt
2023-04-02 16:44:54 +02:00
parent 8258581435
commit 4b5bd9da67
36 changed files with 10000 additions and 578 deletions

View File

@@ -3,28 +3,27 @@ import { RouterView } from "vue-router";
</script>
<template>
<div id="app">
<Sidebar />
<RouterView/>
</div>
<div id="app">
<Sidebar />
<RouterView />
</div>
</template>
<script>
import Sidebar from './views/sidebar/Sidebar'
import Sidebar from "./views/sidebar/Sidebar";
export default {
name: 'App',
components: {
Sidebar,
},
}
name: "App",
components: {
Sidebar,
},
};
</script>
<style>
#app {
display: flex;
height: 100%;
width: 100%;
display: flex;
height: 100%;
width: 100%;
}
</style>