43 lines
853 B
Vue
43 lines
853 B
Vue
<script setup lang="ts">
|
|
// This starter template is using Vue 3 <script setup> SFCs
|
|
// Check out https://vuejs.org/api/sfc-script-setup.html#script-setup
|
|
import SystemMenu from './components/SystemMenu.vue';
|
|
import SystemLayout from './components/SystemLayout.vue';
|
|
import "element-plus/dist/index.css";
|
|
import "funjiaui/dist/style.css";
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<router-view />
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
html,
|
|
body,
|
|
#app {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
/* 滚动条 */
|
|
::-webkit-scrollbar {
|
|
width: 4px;
|
|
height: 6px;
|
|
}
|
|
|
|
/* 滚动槽 */
|
|
::-webkit-scrollbar-track {
|
|
-webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
/* 滚动条滑块 */
|
|
::-webkit-scrollbar-thumb {
|
|
border-radius: 4px;
|
|
background: #999;
|
|
-webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
}
|
|
</style>
|