tiptap/demos/src/Tutorials/1-2-tiptap/Vue/index.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
386 B
Vue

<script setup lang="ts">
import './styles.scss'
import Note from './Note.vue'
import type { TNote } from './types.js'
const notes: TNote[] = [
{ id: 'note-1', content: 'Some random note text' },
{ id: 'note-2', content: 'Some really random note text' },
]
</script>
<template>
<template v-for="note in notes" :key="note.id">
<Note :note="note" />
</template>
</template>