Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update vue3.mdx - escaped quotation marks in code strings that causes… #84

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/content/editor/getting-started/install/vue3.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ This is the fastest way to get Tiptap up and running with Vue. It will give you

mounted() {
this.editor = new Editor({
content: '<p>I'm running Tiptap with Vue.js. 🎉</p>',
content: '<p>I'\m running Tiptap with Vue.js. 🎉</p>',
extensions: [StarterKit],
})
},
Expand Down Expand Up @@ -98,7 +98,7 @@ Alternatively, you can use the Composition API with the `useEditor` method.

setup() {
const editor = useEditor({
content: '<p>I'm running Tiptap with Vue.js. 🎉</p>',
content: '<p>I\'m running Tiptap with Vue.js. 🎉</p>',
extensions: [StarterKit],
})

Expand All @@ -120,7 +120,7 @@ Or feel free to use the new [`<script setup>` syntax](https://v3.vuejs.org/api/s
import StarterKit from '@tiptap/starter-kit'

const editor = useEditor({
content: '<p>I'm running Tiptap with Vue.js. 🎉</p>',
content: '<p>I\'m running Tiptap with Vue.js. 🎉</p>',
extensions: [StarterKit],
})
</script>
Expand Down