27 lines
409 B
Vue
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>
|