We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb529cd commit 744dd81Copy full SHA for 744dd81
packages/nuxt/playground/pages/bug-playground.vue
@@ -24,7 +24,9 @@ promise.value.then(() => {
24
25
const active = ref(false)
26
useIntervalFn(async () => {
27
- if (!active.value) return
+ if (!active.value) {
28
+ return
29
+ }
30
if (thing.value?.ref) {
31
await updateDoc(thingRef.value, {
32
ref: null,
@@ -40,7 +42,7 @@ useIntervalFn(async () => {
40
42
<template>
41
43
<div>
44
<label>
- <input type="checkbox" v-model="active" />Toggle the nested `ref` every
45
+ <input v-model="active" type="checkbox" />Toggle the nested `ref` every
46
3s.
47
</label>
48
<p v-if="thing">Actual: {{ thing }}</p>
0 commit comments