You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
438 B

<template>
<NavBar></NavBar>
<router-view></router-view>
</template>
<script>
// 霍胤彤写于2022年11月22日
//Vue总文件
import NavBar from './components/NavBar.vue';
export default {
components: {
NavBar,
},
setup() {
}
}
</script>
<style>
body{
background-image: url("../src/assets/images/background.jpg");
background-size: cover;
width: 100%;
}
</style>