File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 11<script lang="ts" setup>
2- import { computed , nextTick , ref } from ' vue'
3-
42export interface Todo {
53 created: Date
64 finished: boolean
@@ -25,7 +23,9 @@ function startEdit() {
2523}
2624
2725function saveTodo() {
28- if (! isEditing .value ) { return }
26+ if (! isEditing .value ) {
27+ return
28+ }
2929
3030 emit (' update:todo' , props .todo .id , {
3131 ... props .todo ,
Original file line number Diff line number Diff line change @@ -34,6 +34,16 @@ onMounted(() => {
3434 <p >config:</p >
3535 <p >finished: {{ isDoneFetching }}</p >
3636 <p >All finished: {{ isAllDoneFetching }}</p >
37+ <p >
38+ Revive check:
39+ </p >
40+ <ul >
41+ <li >TimeStamp: {{ config?.time }}</li >
42+ <li >GeoPoint: {{ config?.loc }}</li >
43+ </ul >
44+
45+ <hr >
46+
3747 <pre >{{ config }}</pre >
3848 </div >
3949</template >
You can’t perform that action at this time.
0 commit comments