Skip to content

Commit

Permalink
revert todomvc example (need to pass e2e)
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Jul 14, 2016
1 parent 6f4601c commit 5660052
Showing 1 changed file with 2 additions and 20 deletions.
22 changes: 2 additions & 20 deletions examples/todomvc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,7 @@
<meta charset="utf-8">
<title>Vue.js • TodoMVC</title>
<link rel="stylesheet" href="node_modules/todomvc-app-css/index.css">
<style>
[v-cloak] {
display: none;
}
.todo-list {
position: relative;
overflow: hidden;
}
.todo {
height: 60px;
}
.todo-move, .todo-enter-active, .todo-leave-active {
transition: all .25s cubic-bezier(.5,0,.1,1);
}
.todo-enter, .todo-leave-active {
opacity: 0;
height: 0;
}
</style>
<style>[v-cloak] { display: none; }</style>
</head>
<body>
<section class="todoapp">
Expand All @@ -36,7 +18,7 @@ <h1>todos</h1>
</header>
<section class="main" v-show="todos.length" v-cloak>
<input class="toggle-all" type="checkbox" v-model="allDone">
<ul class="todo-list" is="transition-group" name="todo">
<ul class="todo-list">
<li v-for="todo in filteredTodos"
class="todo"
:key="todo.id"
Expand Down

0 comments on commit 5660052

Please sign in to comment.