<div id="app">
<counter></counter>
<counter></counter>
</div>
<template id="counter-template">
<h1>hello</h1>
<button>Submit</button>
</template>
<script>
Vue.component('counter',{
template:'#counter-template'
});
new Vue({
el:"#app"
});
上面是我的代码
为什么会报错呢 求解下面是报错的信息
<h1>hello</h1>
<button>Submit</button>
If you are using v-if on multiple elements, use v-else-if to chain them instead.