diff --git a/s11e143/src/App.vue b/s11e143/src/App.vue index 8228793..d840bff 100644 --- a/s11e143/src/App.vue +++ b/s11e143/src/App.vue @@ -111,6 +111,7 @@
@@ -119,7 +120,7 @@
-
+
@@ -152,6 +153,7 @@ export default { data(){ return { + isSubmitted: false, userData: { email: '', password: '', @@ -167,6 +169,11 @@ }, components:{ appSwitch: Switch, + }, + methods:{ + submit(){ + this.isSubmitted = true; + } } }