You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
305 B

1 month ago
  1. <template>
  2. <div id="app">
  3. <div style="display: flex;">
  4. <Sidebar />
  5. <router-view />
  6. </div>
  7. </div>
  8. </template>
  9. <script setup>
  10. import Sidebar from './components/Sidebar.vue'
  11. // import Sidebar from './cs.vue'
  12. </script>
  13. <style scoped>
  14. /* 这里可以添加全局样式 */
  15. </style>