8000 chore(playground): adjusted playground project to new reactivity · manchenkoff/nuxt-sanctum-precognition@e9981ee · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Commit e9981ee

Browse files
committed
chore(playground): adjusted playground project to new reactivity
1 parent 245f587 commit e9981ee

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

playground/app.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,19 +97,19 @@ async function submit() {
9797

9898
<div class="row">
9999
<button
100-
:disabled="form.processing.value"
100+
:disabled="form.processing"
101101
@click="submit"
102102
>
103103
Submit
104104
</button>
105105
<button
106-
:disabled="form.validating.value"
106+
:disabled="form.validating"
107107
@click="validate"
108108
>
109109
Validate
110110
</button>
111111
<button
112-
:disabled="form.validating.value"
112+
:disabled="form.validating"
113113
@click="form.validate(['email', 'password'])"
114114
>
115115
Validate Explicit
@@ -124,12 +124,12 @@ async function submit() {
124124

125125
<div>
126126
<strong>Processing:</strong>
127-
<pre>{{ form.processing.value }}</pre>
127+
<pre>{{ form.processing }}</pre>
128128
</div>
129129

130130
<div>
131131
<strong>Validating:</strong>
132-
<pre>{{ form.validating.value }}</pre>
132+
<pre>{{ form.validating }}</pre>
133133
</div>
134134

135135
<div>

0 commit comments

Comments
 (0)
0