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的主要内容,如果未能解决你的问题,请参考以下文章

X-template

#yyds干货盘点#快速理解Vue组件化开发,干货太多,”建议收藏细品“

js 使用script或template标签:分离js代码template中的HTML元素

微信小程序代码片段

VSCode自定义代码片段——CSS选择器

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js