src/App.vue
@@ -1,17 +1,16 @@ <template> <div id="app"> <home /> <router-view name="app"></router-view> </div> </template> <script> import Home from "./views/Home.vue"; // import Home from "./views/Home.vue"; export default { name :"app", components:{ /* components:{ Home } } */ }; </script> <style lang="stylus"> @@ -22,4 +21,8 @@ text-align center color #2c3e50 .z_shadow { border-radius: 10px; box-shadow: 0px 0px 10px 5px #D0E2E9; } </style>