24 lines
235 B
Vue
24 lines
235 B
Vue
<template>
|
|
<RouterView></RouterView>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
html{
|
|
padding:0;
|
|
margin: 0;
|
|
}
|
|
body{
|
|
padding: 0;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|