This commit is contained in:
quantulr
2022-10-20 23:55:57 +08:00
parent c107757016
commit 647e273c1d
26 changed files with 1380 additions and 83 deletions

View File

@ -1,26 +1,34 @@
<template>
<img alt="Vue logo" src="./assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js App"/>
<!-- <img alt="Vue logo" src="./assets/logo.png"> -->
<!-- <HelloWorld msg="Welcome to Your Vue.js App" /> -->
<!-- <SiteDetail></SiteDetail> -->
<router-view></router-view>
</template>
<script>
import HelloWorld from './components/HelloWorld.vue'
// import HelloWorld from "./components/HelloWorld.vue";
// import SiteDetail from "./components/site-detail.vue";
// import SiteDetail from "./components/site-detail.vue";
export default {
name: 'App',
name: "App",
components: {
HelloWorld
}
}
// HelloWorld,
// SiteDetail,
},
};
</script>
<style>
#app {
background-color: #f6f6f6;
}
/* #app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
} */
</style>