tiptap/demos/src/Tutorials/1-1-textarea/Vue/Note.vue
Arnau Gómez Farell 89bd9c7d29
Fix/enforce-type-imports-so-that-bundler-ignores-types (#6132)
* fix: enforce type imports so that the bundler ignores types

* chore: add changeset

* fix: export types with export type keyword
2025-03-03 15:15:30 +01:00

18 lines
344 B
Vue

<script setup lang="ts">
import { ref, watch } from 'vue'
import type { TNote } from './types.js'
const props = defineProps<{ note: TNote }>()
const modelValueProxy = ref('')
watch(props, () => (modelValueProxy.value = props.note?.content), {
immediate: true,
})
</script>
<template>
<textarea v-model="modelValueProxy" />
</template>