Commit 8172e088 authored by tyyin lan's avatar tyyin lan

feat: 编辑器抽屉弹窗

parent 035913b6
<script setup lang="ts">
interface Props {
content: string
}
defineProps<Props>()
const isShowEditorDrawer = defineModel<boolean>('isShowEditorDrawer', { required: true })
</script>
<template>
<n-drawer v-model:show="isShowEditorDrawer" :width="800" placement="right">
<n-drawer-content> 编辑器内容 </n-drawer-content>
</n-drawer>
</template>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment