简易版论坛 https://myspace.bnblogs.cc
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.
 
 
 

20 lines
302 B

<template>
<NavBar/>
<router-view :key="$route.fullPath"/>
</template>
<script>
import 'bootstrap/dist/css/bootstrap.css';
import 'bootstrap/dist/js/bootstrap';
import NavBar from "@/components/NavBar.vue"
export default {
name:'app',
components:{
NavBar,
}
}
</Script>
<style>
</style>