InternetCompetition/.history/src/App_20231102112549.vue

30 lines
322 B
Vue

<template>
<div id="app">
<router-view></router-view>
</div>
</template>
<script>
export default {
name: "App",
data() {
return {};
},
methods: {},
components: {},
};
</script>
<style>
* {
margin: 0;
padding: 0;
}
#app {
width: 100%;
height: 100vh;
background-color: #2b2d38;
}
</style>