插值表达式
Posted elsons
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了插值表达式相关的知识,希望对你有一定的参考价值。
1.el :绑定哪个dom。 el语法固定
2.data: 显示数据。 data语法固定;data下面的msg可以随便定义
3.html 显示:{{msg}} 2个大括号
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <script src="~/Scripts/vue/vue.js"></script> <title>Index</title> </head> <body> <div id="root">{{msg}} </div> </body> </html> <script type="text/javascript"> new Vue({ el: "#root", data: { msg: "hello word" } }); </script>
以上是关于插值表达式的主要内容,如果未能解决你的问题,请参考以下文章