美文网首页
X-Template

X-Template

作者: 林键燃 | 来源:发表于2018-10-18 10:37 被阅读66次

    Vue 提供了另外一种定义模板的方式,在 <script> 标签里使用 text/x-template 类型,并且指定一个 id,将这个 id 赋给 template。

        <my-component></my-component>
        <script type="text/x-template" id="my-component">
            <div>你可以在这个 script 标签中书写模板的HTML</div>
        </script>
    
        Vue.component('my-component'.{
            template:'#my-component'
        })
    

    相关文章

      网友评论

          本文标题:X-Template

          本文链接:https://www.haomeiwen.com/subject/rojjzftx.html