如下所示:
<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的四種寫法總結就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持武林網。
|
新聞熱點
疑難解答