1.4.4 • Published 3 months ago
smart-editor-v3 v1.4.4
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>