35 lines
489 B
Vue
35 lines
489 B
Vue
<script setup>
|
|
import { RouterView } from "vue-router";
|
|
</script>
|
|
|
|
<template>
|
|
<div id="app">
|
|
<!-- <router-link to="/">Home</router-link> -->
|
|
<RouterView/>
|
|
<Sidebar />
|
|
<RoomView />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Sidebar from './views/sidebar/Sidebar'
|
|
import RoomView from './views/room/RoomView'
|
|
|
|
export default {
|
|
name: 'App',
|
|
components: {
|
|
Sidebar,
|
|
RoomView,
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
#app {
|
|
display: flex;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
</style>
|