29 lines
451 B
Vue
29 lines
451 B
Vue
|
|
<template>
|
||
|
|
<d2-container type="full" class="page">
|
||
|
|
<el-container>
|
||
|
|
<el-aside>1</el-aside>
|
||
|
|
<el-main>2</el-main>
|
||
|
|
</el-container>
|
||
|
|
</d2-container>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
data () {
|
||
|
|
return {}
|
||
|
|
},
|
||
|
|
computed: {
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
@import '~@/assets/style/public.scss';
|
||
|
|
.page {
|
||
|
|
// Your page style here
|
||
|
|
// Do not use empty rulesets
|
||
|
|
// If empty, delete it
|
||
|
|
}
|
||
|
|
</style>
|