mirror of
https://github.com/keven1024/015.git
synced 2026-05-28 16:09:37 +00:00
21 lines
488 B
Vue
21 lines
488 B
Vue
<template>
|
|
<Field :name="props.name" v-slot="{ field }">
|
|
<div class="flex flex-col gap-2">
|
|
<Label v-if="props.label">{{ props.label }}</Label>
|
|
<div class="border rounded-md">
|
|
<Tiptap v-bind="field" />
|
|
</div>
|
|
</div>
|
|
</Field>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Tiptap from '@/components/Tiptap.vue'
|
|
|
|
const props = defineProps<{
|
|
name: string
|
|
label?: string
|
|
placeholder?: string
|
|
}>()
|
|
</script>
|