Commit 415ee84d authored by Sam Saccone's avatar Sam Saccone

Merge pull request #1494 from vuejs/master

update Vue.js to 1.0.0
parents 3a93144f 5d510639
...@@ -11,18 +11,18 @@ ...@@ -11,18 +11,18 @@
<section class="todoapp"> <section class="todoapp">
<header class="header"> <header class="header">
<h1>todos</h1> <h1>todos</h1>
<input class="new-todo" autofocus autocomplete="off" placeholder="What needs to be done?" v-model="newTodo" v-on="keyup:addTodo | key 'enter'"> <input class="new-todo" autofocus autocomplete="off" placeholder="What needs to be done?" v-model="newTodo" @keyup.enter="addTodo">
</header> </header>
<section class="main" v-show="todos.length" v-cloak> <section class="main" v-show="todos.length" v-cloak>
<input class="toggle-all" type="checkbox" v-model="allDone"> <input class="toggle-all" type="checkbox" v-model="allDone">
<ul class="todo-list"> <ul class="todo-list">
<li class="todo" v-repeat="todo: filteredTodos" v-class="completed: todo.completed, editing: todo == editedTodo"> <li class="todo" v-for="todo in filteredTodos" :class="{completed: todo.completed, editing: todo == editedTodo}">
<div class="view"> <div class="view">
<input class="toggle" type="checkbox" v-model="todo.completed"> <input class="toggle" type="checkbox" v-model="todo.completed">
<label v-on="dblclick: editTodo(todo)">{{todo.title}}</label> <label @dblclick="editTodo(todo)">{{todo.title}}</label>
<button class="destroy" v-on="click: removeTodo(todo)"></button> <button class="destroy" @click="removeTodo(todo)"></button>
</div> </div>
<input class="edit" type="text" v-model="todo.title" v-todo-focus="todo == editedTodo" v-on="blur: doneEdit(todo), keyup: doneEdit(todo) | key 'enter', keyup: cancelEdit(todo) | key 'esc'"> <input class="edit" type="text" v-model="todo.title" v-todo-focus="todo == editedTodo" @blur="doneEdit(todo)" @keyup.enter="doneEdit(todo)" @keyup.esc="cancelEdit(todo)">
</li> </li>
</ul> </ul>
</section> </section>
...@@ -31,11 +31,11 @@ ...@@ -31,11 +31,11 @@
<strong v-text="remaining"></strong> {{remaining | pluralize 'item'}} left <strong v-text="remaining"></strong> {{remaining | pluralize 'item'}} left
</span> </span>
<ul class="filters"> <ul class="filters">
<li><a href="#/all" v-class="selected: visibility == 'all'">All</a></li> <li><a href="#/all" :class="{selected: visibility == 'all'}">All</a></li>
<li><a href="#/active" v-class="selected: visibility == 'active'">Active</a></li> <li><a href="#/active" :class="{selected: visibility == 'active'}">Active</a></li>
<li><a href="#/completed" v-class="selected: visibility == 'completed'">Completed</a></li> <li><a href="#/completed" :class="{selected: visibility == 'completed'}">Completed</a></li>
</ul> </ul>
<button class="clear-completed" v-on="click:removeCompleted" v-show="todos.length > remaining"> <button class="clear-completed" @click="removeCompleted" v-show="todos.length > remaining">
Clear completed Clear completed
</button> </button>
</footer> </footer>
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
// the root element that will be compiled // the root element that will be compiled
el: '.todoapp', el: '.todoapp',
// app state data // app initial state
data: { data: {
todos: todoStorage.fetch(), todos: todoStorage.fetch(),
newTodo: '', newTodo: '',
...@@ -33,25 +33,11 @@ ...@@ -33,25 +33,11 @@
visibility: 'all' visibility: 'all'
}, },
// ready hook, watch todos change for data persistence // watch todos change for localStorage persistence
ready: function () { watch: {
this.$watch('todos', function (todos) { todos: {
todoStorage.save(todos); deep: true,
}, { deep: true }); handler: todoStorage.save
},
// a custom directive to wait for the DOM to be updated
// before focusing on the input field.
// http://vuejs.org/guide/directives.html#Writing_a_Custom_Directive
directives: {
'todo-focus': function (value) {
if (!value) {
return;
}
var el = this.el;
setTimeout(function () {
el.focus();
}, 0);
} }
}, },
...@@ -117,6 +103,21 @@ ...@@ -117,6 +103,21 @@
removeCompleted: function () { removeCompleted: function () {
this.todos = filters.active(this.todos); this.todos = filters.active(this.todos);
} }
},
// a custom directive to wait for the DOM to be updated
// before focusing on the input field.
// http://vuejs.org/guide/custom-directive.html
directives: {
'todo-focus': function (value) {
if (!value) {
return;
}
var el = this.el;
Vue.nextTick(function () {
el.focus();
});
}
} }
}); });
......
This diff is collapsed.
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"private": true, "private": true,
"dependencies": { "dependencies": {
"director": "^1.2.0", "director": "^1.2.0",
"vue": "^0.12.8", "vue": "^1.0.1",
"todomvc-common": "^1.0.1", "todomvc-common": "^1.0.1",
"todomvc-app-css": "^2.0.0" "todomvc-app-css": "^2.0.0"
} }
......
...@@ -6,6 +6,7 @@ It provides data-driven, nestable view components with a simple and flexible API ...@@ -6,6 +6,7 @@ It provides data-driven, nestable view components with a simple and flexible API
> _[Vue.js - vuejs.org](http://vuejs.org)_ > _[Vue.js - vuejs.org](http://vuejs.org)_
## Learning Vue.js ## Learning Vue.js
The [Vue.js website](http://vuejs.org/) is a great resource to get started. The [Vue.js website](http://vuejs.org/) is a great resource to get started.
Here are some links you may find helpful: Here are some links you may find helpful:
...@@ -18,11 +19,11 @@ Here are some links you may find helpful: ...@@ -18,11 +19,11 @@ Here are some links you may find helpful:
Get help from other Vue.js users: Get help from other Vue.js users:
* [Vue.js on Twitter](https://twitter.com/vuejs) * [Vue.js on Twitter](https://twitter.com/vuejs)
* [Vue.js on Gitter](https://gitter.im/yyx990803/vue) * [Vue.js on Gitter](https://gitter.im/vuejs/vue)
* [Vue.js discussion repo](https://github.com/vuejs/Discussion/issues) * [Vue.js Forum](http://forum.vuejs.org)
_If you have other helpful links to share, or find any of the links above no longer work, please [let us know](https://github.com/tastejs/todomvc/issues)._ _If you have other helpful links to share, or find any of the links above no longer work, please [let us know](https://github.com/tastejs/todomvc/issues)._
## Credit ## Credit
This TodoMVC application was created by [Evan You](http://evanyou.me). This TodoMVC application was created by [Evan You](http://evanyou.me).
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment