mustache插值语法操作

Posted 勇敢*牛牛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mustache插值语法操作相关的知识,希望对你有一定的参考价值。

mustache插值语法

Mustache语法(胡须),也即是双大括号
在mustache语法可以写表达式

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>mustache</title>
</head>
<body>
    <div id="app">
        <!-- Mustache语法(胡须),也即是双大括号 -->
        <h2>message</h2>
        <h2>message+'是'+Firstname</h2>
        <!-- <h2>message,Firstname</h2> -->
        <!-- 这样是不可以输出的 -->
        <h2>message是Firstname</h2>
        <h3>count*2</h3>
        <!--在mustache语法可以写表达式: 输出200 -->
    </div>
<script src="vue.js"></script>
<script>
    let app = new Vue(
        el:'#app',
        data:
            message:'靓仔',
            Firstname:'阿牛哥',
            count:100   //在显示的时候扩大两倍,即可以使用表达式
        
    );
</script>
</body>
</html>

以上是关于mustache插值语法操作的主要内容,如果未能解决你的问题,请参考以下文章

VUE学习笔记:3.vue的插值操作及v-bind绑定属性

Vue 的插值语法

vue的插值操作

Vue模板语法

vue

Vue数据绑定