as mentioned, the button tag in template cannot be displayed,
the HTML code is as follows
<div id="app">
<counter></counter>
<counter></counter>
<counter></counter>
</div>
<template id="counter-temp">
<h1>Hello Vuejs!!</h1>
<button>{{count}}</button>
</template>
the JS code is as follows
Vue.component("counter",{
template:"-sharpcounter-temp",
data: function () {
return {count: 0};
}
});
new Vue ({
el: "-sharpapp",
});