add links example

This commit is contained in:
Hans Pagel
2020-09-25 19:38:15 +02:00
parent 8a0a25aeb0
commit f0e42e1858
2 changed files with 63 additions and 1 deletions

View File

@@ -0,0 +1,63 @@
<template>
<div v-if="editor">
<button @click="addLink" :class="{ 'is-active': editor.isActive('link') }">
link
</button>
<button @click="editor.chain().focus().removeMark('link').run()" v-if="editor.isActive('link')">
remove
</button>
<editor-content :editor="editor" />
</div>
</template>
<script>
import { Editor } from '@tiptap/core'
import { EditorContent } from '@tiptap/vue'
import Document from '@tiptap/extension-document'
import Paragraph from '@tiptap/extension-paragraph'
import Text from '@tiptap/extension-text'
import Link from '@tiptap/extension-link'
export default {
components: {
EditorContent,
},
data() {
return {
editor: null,
}
},
mounted() {
this.editor = new Editor({
extensions: [
Document(),
Paragraph(),
Text(),
Link(),
],
content: `
<p>
Wow, this editor has support for links to the whole <a href="https://en.wikipedia.org/wiki/World_Wide_Web" target="_self">world wide web</a>. We tested a lot of URLs and I think you can add *every URL* you want. Isnt that cool? Lets try <a href="https://statamic.com/" target="_self">another one!</a> Yep, seems to work.
</p>
<p>
By default every link will get a \`rel="noopener noreferrer nofollow"\` attribute. Its configurable though.
</p>
`,
})
},
methods: {
addLink() {
const url = window.prompt('URL')
this.editor.chain().focus().link({ href: url }).run()
},
},
beforeDestroy() {
this.editor.destroy()
},
}
</script>

View File

@@ -21,7 +21,6 @@
# draft: true
- title: Links
link: /examples/links
draft: true
# - title: Images
# link: /examples/images
# draft: true