switch front to typescript
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user