Skip to content

Commit eecee64

Browse files
committed
70
1 parent 6870cae commit eecee64

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/components/TodoForm.vue

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
<script>
6464
import { useRoute, useRouter } from 'vue-router';
6565
import axios from 'axios';
66-
import { ref, computed, onUpdated } from 'vue';
66+
import { ref, computed } from 'vue';
6767
import _ from 'lodash';
6868
import Toast from '@/components/Toast.vue';
6969
import { useToast } from '@/composables/toast';
@@ -88,9 +88,7 @@ export default {
8888
completed: false,
8989
body: ''
9090
});
91-
onUpdated(() => {
92-
console.log(todo.value.subject)
93-
})
91+
9492
const subjectError = ref('');
9593
const originalTodo = ref(null);
9694
const loading = ref(false);

0 commit comments

Comments
 (0)