You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
395 B

<script setup>
import HelloWorld from './components/HelloWorld.vue'
</script>
<template>
<div class="common-layout">
<el-container>
<el-aside width="200px">
Aside
</el-aside>
<el-main>
<HelloWorld/>
</el-main>
</el-container>
</div>
</template>
<style>
#app,
html,
body,
.el-container {
padding: 0;
margin: 0;
height: 100%;
}
</style>