2022-09-15 09:01:22 +08:00
|
|
|
<template>
|
2022-10-20 23:55:57 +08:00
|
|
|
<!-- <img alt="Vue logo" src="./assets/logo.png"> -->
|
|
|
|
<!-- <HelloWorld msg="Welcome to Your Vue.js App" /> -->
|
|
|
|
<!-- <SiteDetail></SiteDetail> -->
|
|
|
|
<router-view></router-view>
|
2022-09-15 09:01:22 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2022-10-20 23:55:57 +08:00
|
|
|
// import HelloWorld from "./components/HelloWorld.vue";
|
|
|
|
// import SiteDetail from "./components/site-detail.vue";
|
|
|
|
// import SiteDetail from "./components/site-detail.vue";
|
2022-09-15 09:01:22 +08:00
|
|
|
|
|
|
|
export default {
|
2022-10-20 23:55:57 +08:00
|
|
|
name: "App",
|
2022-09-15 09:01:22 +08:00
|
|
|
components: {
|
2022-10-20 23:55:57 +08:00
|
|
|
// HelloWorld,
|
|
|
|
// SiteDetail,
|
|
|
|
},
|
|
|
|
};
|
2022-09-15 09:01:22 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
#app {
|
2022-10-20 23:55:57 +08:00
|
|
|
background-color: #f6f6f6;
|
|
|
|
}
|
|
|
|
/* #app {
|
2022-09-15 09:01:22 +08:00
|
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
text-align: center;
|
|
|
|
color: #2c3e50;
|
|
|
|
margin-top: 60px;
|
2022-10-20 23:55:57 +08:00
|
|
|
} */
|
2022-09-15 09:01:22 +08:00
|
|
|
</style>
|