vue写template的4种形式

Posted 张啊咩

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue写template的4种形式相关的知识,希望对你有一定的参考价值。

1.template标签(非单文件组件)

<template id="t1">
    <h2>66666666</h2>
</template>

<script>
    new Vue({
        template: #t1
    })
</script>

2.template标签单页面组件

和上面一样用<template></template>,由于有vue-loader编译不需要在手动在选项template上加‘#t1’之类的

3.反单引号

<script>
    new Vue({
        template: `
            <div>
                     <h2>2333</h2>      
            </div>
        `
    })
</script>

4.script标签(type="x-template")

<script type="x-template" id="tem">
    <h2>我是古天乐~<div>666</div></h2>
</script>

<script>
    new Vue({
        template:#tem
    })
</script>

 

以上是关于vue写template的4种形式的主要内容,如果未能解决你的问题,请参考以下文章

vscode中设置vue代码片段

好的编程习惯

vscode之快速生成vue模板

vue —— VSCode代码片段

vue —— VSCode代码片段

封装弹窗/抽屉,使用hook函数形式减少template内部代码