# 下载最新的vue
$ npm install vuejs 引用 vue.js
开始代码,感受vue强大的双向数据绑定
{{ message }}
new Vue({
el: '#app',
data: {
message: 'Hello Vue.js!'
}
})
实战代码:
{{ todo.text }}
new Vue({
el: '#app',
data: {
newTodo: '',
todos: [
{ text: 'Add some todos' }
]
},
methods: {
addTodo: function () {
var text = this.newTodo.trim()
if (text) {
this.todos.push({ text: text })
this.newTodo = ''
}
},
removeTodo: function (index) {
this.todos.splice(index, 1)
}
}
})
Vue整个生命周期示意图: