2022-02-17 14:47:39 +08:00

21 lines
217 B
Vue

<template>
<router-view></router-view>
</template>
<script>
export default {
name: 'App',
};
</script>
<style lang="scss">
html,
body,
#app {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
}
</style>