parent
73b9bc7591
commit
0d0f1761f9
@ -0,0 +1,30 @@
|
|||||||
|
<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>
|
Loading…
Reference in new issue