X-template

时间:2023-03-09 08:28:51
X-template
<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>

相关文章