|
@@ -1,29 +1,36 @@
|
|
|
<template>
|
|
|
- <img alt="Vue logo" src="./assets/logo.png">
|
|
|
- <HelloWorld msg="Welcome to Your Vue.js App"/>
|
|
|
<TitleBar/>
|
|
|
+ <CenterPage/>
|
|
|
+ <StatusBar/>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import HelloWorld from './components/HelloWorld.vue'
|
|
|
import TitleBar from './components/TitleBar.vue'
|
|
|
+import CenterPage from './components/CenterPage.vue'
|
|
|
+import StatusBar from './components/StatusBar.vue'
|
|
|
|
|
|
export default {
|
|
|
name: 'App',
|
|
|
components: {
|
|
|
- HelloWorld,
|
|
|
- TitleBar
|
|
|
+ TitleBar,
|
|
|
+ CenterPage,
|
|
|
+ StatusBar
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
-<style>
|
|
|
-#app {
|
|
|
- font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
|
+<style scoped>
|
|
|
+@import './assets/style/main.css';
|
|
|
+ /*#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;
|
|
|
-}
|
|
|
+ margin-top: 60px;
|
|
|
+ background-color: coral;
|
|
|
+ padding: 0;
|
|
|
+ margin: 0;
|
|
|
+ border: none;
|
|
|
+} */
|
|
|
</style>
|