1. 程式人生 > >Vue2 模板template的四種寫法

Vue2 模板template的四種寫法

<div id="app">
    <h1>我是直接寫在構造器裡的模板1</h1>
</div>

<template id="demo3">
    <h1 style="color:red">我是選項模板3</h1>
</template>

<script type="x-template" id="demo4">
    <h1 style="color:red">我是script標籤模板4</h1>
</script>

<script>
    var vm=new Vue({
        el:"#app",
        data:{
            message:1
        },

        //第2種模板 寫在構造器裡
        //template:`<h1 style="color:red">我是選項模板2</h1>`

        //第3種模板 寫在<template>標籤裡
        //template:'#demo3'

        //第4種模板 寫在<script type="x-template">標籤裡
        template:'#demo4'
    })
</script>
推薦第4種。