mirror of
https://gitee.com/js-yhsec/energy_storage.git
synced 2026-05-27 18:59:26 +08:00
36 lines
368 B
Vue
36 lines
368 B
Vue
<template>
|
|
<div class="system">
|
|
<router-view/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: '',
|
|
components:{
|
|
},
|
|
props: {
|
|
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
mounted() {
|
|
|
|
},
|
|
methods:{
|
|
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.system{
|
|
width: 100%;
|
|
height: 100%;
|
|
background: $bg1-color;
|
|
border-radius: 15px;
|
|
}
|
|
</style> |