vue(1)

来源:互联网 发布:王朔人品知乎 编辑:程序博客网 时间:2024/06/13 06:42

1.vue中的hello world

<!DOCTYPE html><html><head><title>vue</title></head><body><div id="app"><h1>{{message}}</h1></div><script type="text/javascript" src="http://static.runoob.com/assets/vue/1.0.11/vue.min.js"></script><script type="text/javascript">new Vue({el:'#app',data:{message:'hello world'}})</script></body></html>


原创粉丝点击