30 lines
391 B
Vue
30 lines
391 B
Vue
<script setup>
|
|
import { RouterView } from "vue-router";
|
|
</script>
|
|
|
|
<template>
|
|
<div id="app">
|
|
<Sidebar />
|
|
<RouterView />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Sidebar from "./views/sidebar/Sidebar";
|
|
|
|
export default {
|
|
name: "App",
|
|
components: {
|
|
Sidebar,
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
#app {
|
|
display: flex;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
</style>
|