Vue起步

mkdir vue
cd vue
wget https://vuejs.org/js/vue.js
touch index.html

1. hello world 项目


    
        
    
    
        
{{ message }}

打开chrome devtools 感受双向绑定

> app.$data.message
"Hello Vue!"
> app.$data.message="hehe" #浏览器中的值被刷新
"hehe"
> app.$data.message
"hehe"

你可能感兴趣的:(Vue起步)