diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-12-04 00:21:19 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-12-04 00:21:19 +0530 |
commit | 43ecf895d367bb63b35a2452b1e1c81e76e560cb (patch) | |
tree | 20034bb71eb19eff04a22190a6e06a04b1ed7a0b /src/App.vue | |
parent | 366e2193c855ab28917b743c71a877ad5b76c934 (diff) |
added sidebar0.2.0
Diffstat (limited to 'src/App.vue')
-rw-r--r-- | src/App.vue | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue index ab2e3f5..c637566 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,11 +1,25 @@ <script setup lang="ts"> import { RouterView } from 'vue-router' -import navbar from './components/navbar.vue' +//import navbar from './components/navbar.vue' +import sidebar from './components/sidebar.vue' </script> <template> + <!-- <navbar /> + --> + <sidebar /> <main class="m-3"> <RouterView /> </main> </template> + +<style> +main { + width: 100%; +} +#app { + display: flex; + flex-direction: row; +} +</style> |