标签:pre .com temp nbsp script class new template span
<body>
<div id="app">
<hello-world></hello-world>
</div>
<script type="text/x-template" id="hello-world-template">
<p>Hello hello hello</p>
</script>
<script>
Vue.component(‘hello-world‘,{
template:‘#hello-world-template‘
})
new Vue({
el:‘#app‘
})
</script>
</body>
标签:pre .com temp nbsp script class new template span
原文地址:http://www.cnblogs.com/ItIsInteresting/p/7747723.html