mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-15 11:09:01 +08:00
68 lines
1.2 KiB
Vue
68 lines
1.2 KiB
Vue
<template>
|
|
<div class="editor">
|
|
<menu-bar class="menubar" :editor="editor">
|
|
<template slot-scope="{ commands }">
|
|
<button
|
|
class="menubar__button"
|
|
@click="showImagePrompt(commands.image)"
|
|
>
|
|
<icon name="image" />
|
|
</button>
|
|
</template>
|
|
</menu-bar>
|
|
|
|
<editor-content class="editor__content" :editor="editor" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Icon from 'Components/Icon'
|
|
import { Editor, EditorContent, MenuBar } from 'tiptap'
|
|
import {
|
|
HardBreak,
|
|
Heading,
|
|
Image,
|
|
Bold,
|
|
Code,
|
|
Italic,
|
|
} from 'tiptap-extensions'
|
|
|
|
export default {
|
|
components: {
|
|
Icon,
|
|
EditorContent,
|
|
MenuBar,
|
|
},
|
|
data() {
|
|
return {
|
|
editor: new Editor({
|
|
extensions: [
|
|
new HardBreak(),
|
|
new Heading({ levels: [1, 2, 3] }),
|
|
new Image(),
|
|
new Bold(),
|
|
new Code(),
|
|
new Italic(),
|
|
],
|
|
content: `
|
|
<h2>
|
|
Images
|
|
</h2>
|
|
<p>
|
|
This is basic example of implementing images. Try to drop new images here. Reordering also works.
|
|
</p>
|
|
<img src="https://ljdchost.com/8I2DeFn.gif" />
|
|
`,
|
|
}),
|
|
}
|
|
},
|
|
methods: {
|
|
showImagePrompt(command) {
|
|
const src = prompt('Enter the url of your image here')
|
|
if (src !== null) {
|
|
command({ src })
|
|
}
|
|
},
|
|
},
|
|
}
|
|
</script> |