小编给大家分享一下Vue2模板template的写法有哪些,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
如下所示:
<div id="app">
<h2>我是直接写在构造器里的模板1</h2>
</div>
<template id="demo3">
<h2 >我是选项模板3</h2>
</template>
<script type="x-template" id="demo4">
<h2 >我是script标签模板4</h2>
</script>
<script>
var vm=new Vue({
el:"#app",
data:{
message:1
},
//第2种模板 写在构造器里
//template:`<h2 >我是选项模板2</h2>`
//第3种模板 写在<template>标签里
//template:'#demo3'
//第4种模板 写在<script type="x-template">标签里
template:'#demo4'
})
</script>
以上是“Vue2模板template的写法有哪些”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!