美文网首页
template模板及三种写法

template模板及三种写法

作者: 新世界的冒险 | 来源:发表于2018-07-16 17:33 被阅读0次

一、直接写在选项里的模板

直接在构造器里的template选项后边编写。这种写法比较直观,但是如果模板html代码太多,不建议这么写。

二、写在<template>标签里的模板

这种写法更像是在写HTML代码,就算不会写Vue的人,也可以制作页面。

三、写在<script>标签里的模板

这种写模板的方法,可以让模板文件从外部引入。

<!DOCTYPE html>
<html>
<head>
    <title>Template 制作模版</title>
</head>
<body>
    <div id="app">
        <!-- 写在template标签里的模板 -->
        <template id='muban2'>
            <h2 style="color:blue">这是模板2</h2>
        </template>
    </div>
    <script type="text/javascript" src="https://cdn.bootcss.com/vue/2.2.2/vue.min.js"></script>
    <!--写在<script>标签里的模板-->
    <script type="T-template" id='muban3'>
        <h2 style="color:green">这是模板3</h2>
    </script>
    <script type="text/javascript">
        var vm=new Vue({
            el:'#app',
            data:{
                message:'hello world'
            },
            //写在选项里的模板
            /*template:`
                <h2 style='color:red'>这是模板</h2>
            `*/
            //引用写在template里的模板
            // template:'#muban2'
            //引用写在<script>标签里的模板
            template:'#muban3'
        })
    </script>
</body>
</html>

相关文章

  • 第五节 模板、指令与修饰符

    一、模板的三种写法 第三种里面,不是html,它只是一个标签,用来包裹东...

  • template模板及三种写法

    一、直接写在选项里的模板 直接在构造器里的template选项后边编写。这种写法比较直观,但是如果模板html代码...

  • Vue(5)

    1.模板template的三种写法 首先我们要明白template里面不是html语言而是xml语言,标签是需要闭...

  • 模板 template 三种写法

    一、 Vue 完整版,写在HTML里 二、Vue完整版,写在选项里 三、Vue 非完整版,配合 xxx.vue 文...

  • Template 制作模版(13)

    vue的模板有三种写法 一、直接写在选项里的模板 template为何不用双引号或者单引号而是用``,因为我们写模...

  • 10.组件当中模板字符抽离写法

    模板字符抽离的两种写法: 然后通过id属性绑定

  • Vue模板、指令与修饰符

    模板template三种写法 一. Vue完整版,写在HTML中 二. Vue完整版,写在选项里 三. Vue非完...

  • Vue的模板、指令与修饰符

    1. 模板 template 的三种写法 使用Vue完整版,写在HTML里 使用Vue完整版,写在选项里 这样写,...

  • Vue的模板语法

    模板template的三种写法 第一种:Vue完整版,写在HTML中 第二种:Vue完整版,写在选项里 注意:使用...

  • 力卉编程 | C语言 | 模板类定义

    C++ 中类模板的写法如下: template <类型参数表>class 类模板名{成员函数和成员变量}; 类型参...

网友评论

      本文标题:template模板及三种写法

      本文链接:https://www.haomeiwen.com/subject/ssbbpftx.html