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.
27 lines
333 B
Vue
27 lines
333 B
Vue
|
5 years ago
|
<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;
|
||
|
|
}
|
||
|
|
</style>
|