smart-editor-v3
v1.1.0
Published
## 简介
Downloads
260
Readme
smart-editor-v3
简介
智荟通自研编辑器引擎,基于vue3
,tiptap
,naiveui
打造
安装
使用pnpm
安装
pnpm i smart-editor-v3
使用
<template>
<umo-editor v-bind="options" />
</template>
// 使用组合式 API
<script setup>
import { ref } from 'vue'
import { UmoEditor } from '@umoteam/editor'
const options = ref({
// 配置项
// ...
})
</script>