vue第一个案例
vue.js 开发版本
vue.min.js 生产版本(压缩版)
第一个案例:
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <script type="text/javascript" src="./js/vue.js" ></script> </head> <body> <div id="root"> hello world! {{name}} </div> <script type="text/javascript" > new Vue({ el: '#root', data:{ name: "郭大帅" } }) </script> </body> </html>
注意:
1.容器和VUE实例是一对一的关系。
2. {{}}双括号里面只能写js表达式和js语句,比如{{Date.now()}}
3. root容器中的代码成为模板
标签:容器,vue,name,js,学习,Vue,root From: https://www.cnblogs.com/helloworldcode/p/17375555.html