Nuxt/test/fixtures/basic/pages/lazy-import-components/model.vue
tbitw2549 373e223268 fix: merge attrs at render
This fixes a reactivity issue and adds an accompanying test case
2024-09-14 20:43:23 +03:00

10 lines
143 B
Vue

<template>
<div>
<LazyEventDelayedModel v-model="model" />
</div>
</template>
<script setup lang="ts">
const model = ref(0)
</script>