diff --git a/vue-project/src/App.vue b/vue-project/src/App.vue index 2575515..e2b9258 100644 --- a/vue-project/src/App.vue +++ b/vue-project/src/App.vue @@ -2,25 +2,27 @@ import {ref} from "vue"; import InputMask from "@/components/InputMask.vue"; -const name = 'your-name' -const textClass = 'text' + const counter = ref(0) function incrementCounter() { counter.value++ } +const name = ref('') + +setTimeout(() => { + name.value = 'Bob' +}, 1000) + - +