mirror of
https://github.com/nuxt/nuxt.git
synced 2024-12-05 03:47:12 +00:00
373e223268
This fixes a reactivity issue and adds an accompanying test case
10 lines
143 B
Vue
10 lines
143 B
Vue
<template>
|
|
<div>
|
|
<LazyEventDelayedModel v-model="model" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const model = ref(0)
|
|
</script>
|