sunkuosheng 3 vuotta sitten
vanhempi
commit
ae8cd65566
1 muutettua tiedostoa jossa 5 lisäystä ja 3 poistoa
  1. 5 3
      src/App.vue

+ 5 - 3
src/App.vue

@@ -1,16 +1,18 @@
 <template>
   <div id="appMain">
-    <HelloWorld msg="Welcome to Your Vue.js App"/>
+    <router-view>
+
+    </router-view>
   </div>
 </template>
 
 <script>
-import HelloWorld from './components/HelloWorld.vue'
+
 
 export default {
   name: 'App',
   components: {
-    HelloWorld
+
   }
 }
 </script>