LSSE-front/src/views/subsystem/index.vue
2025-09-17 16:56:04 +08:00

27 lines
409 B
Vue

<template>
<router-view></router-view>
</template>
<script>
export default {
name: 'Subsystem',
}
</script>
<style lang="less" scoped>
::v-deep {
::-webkit-scrollbar {
width: 15px;
background-color: #0c2e3d;
}
::-webkit-scrollbar-button {
width: 15px;
height: 25px;
background-color: transparent;
}
::-webkit-scrollbar-thumb {
background-color: #386477;
}
}
</style>