You cannot 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
355 B
Vue

<template>
<router-view class="app" />
</template>
<script lang="ts">
import { defineComponent } from 'vue'
export default defineComponent({
name: 'App'
})
</script>
<style lang="less">
.size {
min-width: @minWidth;
width: 100;
height: 100%;
}
html,body {
.size;
margin: 0;
padding: 0;
}
#app {
.size;
background: @appBg;
}
</style>