21 lines
227 B
Vue

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