前提・実現したいこと
Vue Routerを使用してSPAを作成したいのですが、テンプレート内で最初に実行した値しか出力されません。テンプレート通りに出力するにはどうしたらいいでしょうか。
ご教授よろしくお願いします。
発生している問題・エラーメッセージ
"[Vue warn]: Error compiling template: Component template should contain exactly one root element. If you are using v-if on multiple elements, use v-else-if to chain them instead.
該当のソースコード
HTML
1<script type="text/x-template" id="home"> 2 <div> 3 <h2>Home</h2> 4 <ul> 5 <li> 6 <router-link to="/1">Component 1</router-link> 7 </li> 8 </ul> 9 </div> 10</script> 11 12<script type="text/x-template" id="component1"> 13 <div> 14 <h2>Component 1</h2> 15 <button-counter></button-counter> 16 <ul> 17 <li> 18 <router-link to="/">Home</router-link> 19 </li> 20 </ul> 21 </div> 22</script> 23 24<div id="app"> 25 <h1>Basic Vue-Router</h1> 26 27 <router-view></router-view> 28</div>
JavaScript
1const Home = { 2 template: '#home' 3} 4 5Vue.component('button-counter', { 6 name: "buttonCounter", 7 data: function () { 8 return { 9 comment:"This is count button", 10 count: 0 11 } 12 }, 13 template: '<p>{{comment}}</p><button v-on:click="count++">You clicked me {{ count }} times.</button>' 14}) 15 16 17const Component1 = { 18 template: '#component1' 19}; 20 21const Component2 = { 22 template: '#component2' 23}; 24 25const routes = [ 26 { path: '', component: Home }, 27 { path: '/1', component: Component1 }, 28 { path: '/2', component: Component2 } 29] 30 31const router = new VueRouter({ 32 routes 33}); 34 35new Vue({ 36 router 37}).$mount('#app'); 38
あなたの回答
tips
プレビュー