X-template
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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>
以上是关于X-template的主要内容,如果未能解决你的问题,请参考以下文章
#yyds干货盘点#快速理解Vue组件化开发,干货太多,”建议收藏细品“