smart-editor-v3 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,40 @@
1
+ # smart-editor-v3
2
+
3
+ ## 简介
4
+
5
+ 智荟通自研编辑器引擎,基于`vue3`,`tiptap`,`naiveui`打造
6
+
7
+ ## 安装
8
+
9
+ 使用`pnpm`安装
10
+
11
+ ```bash
12
+ pnpm i smart-editor-v3
13
+ ```
14
+
15
+ ## 使用
16
+
17
+ ```html
18
+ <template>
19
+ <umo-editor v-bind="options" />
20
+ </template>
21
+
22
+ // 使用组合式 API
23
+ <script setup>
24
+ import { ref } from 'vue'
25
+ import { UmoEditor } from '@umoteam/editor'
26
+
27
+ const options = ref({
28
+ // 配置项
29
+ // ...
30
+ })
31
+ </script>
32
+ ```
33
+
34
+ ## 接口说明
35
+
36
+ ### 默认配置
37
+
38
+ ### 事件列表
39
+
40
+ ### 方法列表