如下所示:
<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種。
以上這篇Vue2 模板template的四種寫法總結就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持腳本之家。
聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com