码迷,mamicode.com
首页 > 其他好文 > 详细

vue中template的三种写法

时间:2019-08-31 00:47:25      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:data   code   new   temp   vue   template   字符串拼接   htm   app   

第一种(使用模板字符串)早期字符串拼接年代

 <div id="app"></div>
 new Vue({
            el: "#app",
            template: '<div>                            <h1>{{message}}</h1>                        <div>',
            data: {
                message: '字符串拼接'
            }
        })


第二种(使用script元素)HTML5标准之前的写法

 <div id="app"></div>

    <script type="text/x-template" id="tem">
        <div>
            <h1>{{message}}</h1>
        </div>
    </script>
  new Vue({
            el: "#app",
            template: '#tem',
            data: {
                message: 'HTML5标准之前的写法,存在一定弊端(可自行google)                          之后HTML5发布的template元素弥补了此方式的缺点'
            }
        })


第三种(使用template元素)HTML5标准之后的写法【第二种的升级版】

 <div id="app"></div>

    <template id="tem">
        <div>
            <h1>{{message}}</h1>
        </div>
    </template>
  new Vue({
            el: "#app",
            template: '#tem',
            data: {
                message: 'HTML5中的template标签 ,注意:                          template是HTML5中的标签,                          不是自定义标签,                          也不是Vue中的组件                           MDN-docs:https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/template '
            }
        })

vue中template的三种写法

标签:data   code   new   temp   vue   template   字符串拼接   htm   app   

原文地址:https://www.cnblogs.com/liu-di/p/11437553.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!