其他分享
首页 > 其他分享> > 02.1插值操作-Mustache语法

02.1插值操作-Mustache语法

作者:互联网

<body>
    <div id="app">
        <h1> {{ message }} </h1>
        <p> {{ firstName + " " + lastName}} </p>
        <h2> {{ counter * 2 }} </h2>
    </div>
      引入Vue官方文档
        // mustache语法就是 {{}}  不仅可以直接写变量 也可以写简单的表达式 如13、14行
        const app = new Vue({
            el: '#app',
            data: {
                message: "好好学习",
                firstName: "lala",
                lastName: "李银河",
                counter: "100"
            }
        })
  

 

标签:Vue,firstName,插值,lastName,app,counter,02.1,message,Mustache
来源: https://www.cnblogs.com/yanglaxue/p/14203063.html