We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 681aac2 commit 86486bcCopy full SHA for 86486bc
README.md
@@ -45,6 +45,9 @@ Instantly add [TipTap Editor](https://tiptap.dev/editor) with basic functionalit
45
```js
46
export default defineNuxtConfig({
47
modules: ["nuxt-tiptap-editor"],
48
+ tiptap: {
49
+ prefix: "Tiptap", //prefix for Tiptap imports, composables not included
50
+ },
51
});
52
```
53
@@ -180,7 +183,7 @@ Instantly add [TipTap Editor](https://tiptap.dev/editor) with basic functionalit
180
183
<script setup>
181
184
const editor = useEditor({
182
185
content: "<p>I'm running Tiptap with Vue.js. 🎉</p>",
- extensions: [StarterKit],
186
+ extensions: [TiptapStarterKit],
187
188
</script>
189
0 commit comments