- todos
:class="{ completed: todo.completed, editing: todo === editedTodo }"
>
- +@@ -38,7 +38,7 @@
todos
@blur="doneEdit(todo)" @keyup.enter="doneEdit(todo)" @keyup.escape="cancelEdit(todo)" - /> + >
diff --git a/src/examples/src/cells/Cell/template.html b/src/examples/src/cells/Cell/template.html index 5efe0477c7..257fae87a2 100644 --- a/src/examples/src/cells/Cell/template.html +++ b/src/examples/src/cells/Cell/template.html @@ -5,6 +5,6 @@ @change="update" @blur="update" @vnode-mounted="({ el }) => el.focus()" - /> + > {{ evalCell(cells[c][r]) }} diff --git a/src/examples/src/circle-drawer/App/composition.js b/src/examples/src/circle-drawer/App/composition.js index 07ac8704c9..655611af2f 100644 --- a/src/examples/src/circle-drawer/App/composition.js +++ b/src/examples/src/circle-drawer/App/composition.js @@ -57,10 +57,12 @@ export default { return { history, + index, circles, selected, adjusting, onClick, + adjust, undo, redo } diff --git a/src/examples/src/circle-drawer/App/template.html b/src/examples/src/circle-drawer/App/template.html index 7019b65d4b..98978d66b8 100644 --- a/src/examples/src/circle-drawer/App/template.html +++ b/src/examples/src/circle-drawer/App/template.html @@ -23,5 +23,5 @@
Adjust radius of circle at ({{ selected.cx }}, {{ selected.cy }})
- +Checked names:
{{ checkedNames }}