mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-06-07 17:43:49 +08:00
241 lines
5.8 KiB
Vue
241 lines
5.8 KiB
Vue
<template>
|
||
<div v-if="editor" class="toolbar" :class="styles.toolbar">
|
||
<button @click="editor.chain().focus().toggleBold().run()" :class="{ 'is-active': editor.isActive('bold') }">
|
||
Bold
|
||
</button>
|
||
<button @click="editor.chain().focus().toggleItalic().run()" :class="{ 'is-active': editor.isActive('italic') }">
|
||
Italic
|
||
</button>
|
||
<button @click="editor.chain().focus().toggleStrike().run()" :class="{ 'is-active': editor.isActive('strike') }">
|
||
Strike
|
||
</button>
|
||
<button @click="editor.chain().focus().toggleCode().run()" :class="{ 'is-active': editor.isActive('code') }">
|
||
Code
|
||
</button>
|
||
<button @click="editor.chain().focus().unsetAllMarks().run()">Clear marks</button>
|
||
<button @click="editor.chain().focus().clearNodes().run()">Clear nodes</button>
|
||
<button @click="editor.chain().focus().setParagraph().run()" :class="{ 'is-active': editor.isActive('paragraph') }">
|
||
Paragraph
|
||
</button>
|
||
<button
|
||
@click="editor.chain().focus().toggleHeading({ level: 1 }).run()"
|
||
:class="{ 'is-active': editor.isActive('heading', { level: 1 }) }"
|
||
>
|
||
H1
|
||
</button>
|
||
<button
|
||
@click="editor.chain().focus().toggleHeading({ level: 2 }).run()"
|
||
:class="{ 'is-active': editor.isActive('heading', { level: 2 }) }"
|
||
>
|
||
H2
|
||
</button>
|
||
<button
|
||
@click="editor.chain().focus().toggleHeading({ level: 3 }).run()"
|
||
:class="{ 'is-active': editor.isActive('heading', { level: 3 }) }"
|
||
>
|
||
H3
|
||
</button>
|
||
<button
|
||
@click="editor.chain().focus().toggleHeading({ level: 4 }).run()"
|
||
:class="{ 'is-active': editor.isActive('heading', { level: 4 }) }"
|
||
>
|
||
H4
|
||
</button>
|
||
<button
|
||
@click="editor.chain().focus().toggleHeading({ level: 5 }).run()"
|
||
:class="{ 'is-active': editor.isActive('heading', { level: 5 }) }"
|
||
>
|
||
H5
|
||
</button>
|
||
<button
|
||
@click="editor.chain().focus().toggleHeading({ level: 6 }).run()"
|
||
:class="{ 'is-active': editor.isActive('heading', { level: 6 }) }"
|
||
>
|
||
H6
|
||
</button>
|
||
<button
|
||
@click="editor.chain().focus().toggleBulletList().run()"
|
||
:class="{ 'is-active': editor.isActive('bulletList') }"
|
||
>
|
||
Bullet list
|
||
</button>
|
||
<button
|
||
@click="editor.chain().focus().toggleOrderedList().run()"
|
||
:class="{ 'is-active': editor.isActive('orderedList') }"
|
||
>
|
||
Ordered list
|
||
</button>
|
||
<button
|
||
@click="editor.chain().focus().toggleCodeBlock().run()"
|
||
:class="{ 'is-active': editor.isActive('codeBlock') }"
|
||
>
|
||
Code block
|
||
</button>
|
||
<button
|
||
@click="editor.chain().focus().toggleBlockquote().run()"
|
||
:class="{ 'is-active': editor.isActive('blockquote') }"
|
||
>
|
||
Blockquote
|
||
</button>
|
||
<button @click="editor.chain().focus().setHorizontalRule().run()">Horizontal rule</button>
|
||
<button @click="editor.chain().focus().setHardBreak().run()">Hard break</button>
|
||
<button @click="editor.chain().focus().undo().run()">Undo</button>
|
||
<button @click="editor.chain().focus().redo().run()">Redo</button>
|
||
</div>
|
||
<editor-content :editor="editor" />
|
||
</template>
|
||
|
||
<script>
|
||
import StarterKit from '@tiptap/starter-kit'
|
||
import { Editor, EditorContent } from '@tiptap/vue-3'
|
||
|
||
import styles from './index.module.css'
|
||
|
||
export default {
|
||
components: {
|
||
EditorContent,
|
||
},
|
||
|
||
data() {
|
||
return {
|
||
editor: null,
|
||
styles,
|
||
}
|
||
},
|
||
|
||
mounted() {
|
||
this.editor = new Editor({
|
||
extensions: [StarterKit],
|
||
content: `
|
||
<h1 class="test">
|
||
This is a red headline
|
||
</h1>
|
||
<p>
|
||
this is a <em>basic</em> example of <strong>Tiptap</strong>. Sure, there are all kind of basic text styles you’d probably expect from a text editor. But wait until you see the lists:
|
||
</p>
|
||
<ul>
|
||
<li>
|
||
That’s a bullet list with one …
|
||
</li>
|
||
<li>
|
||
… or two list items.
|
||
</li>
|
||
</ul>
|
||
<p>
|
||
Isn’t that great? And all of that is editable. But wait, there’s more. Let’s try a code block:
|
||
</p>
|
||
<pre><code class="language-css">body {
|
||
display: none;
|
||
}</code></pre>
|
||
<p>
|
||
I know, I know, this is impressive. It’s only the tip of the iceberg though. Give it a try and click a little bit around. Don’t forget to check the other examples too.
|
||
</p>
|
||
<blockquote>
|
||
Wow, that’s amazing. Good work, boy! 👏
|
||
<br />
|
||
— Mom
|
||
</blockquote>
|
||
`,
|
||
})
|
||
},
|
||
|
||
beforeUnmount() {
|
||
this.editor.destroy()
|
||
},
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
/* Basic editor styles */
|
||
.tiptap {
|
||
:first-child {
|
||
margin-top: 0;
|
||
}
|
||
|
||
/* List styles */
|
||
ul,
|
||
ol {
|
||
padding: 0 1rem;
|
||
margin: 1.25rem 1rem 1.25rem 0.4rem;
|
||
|
||
li p {
|
||
margin-top: 0.25em;
|
||
margin-bottom: 0.25em;
|
||
}
|
||
}
|
||
|
||
/* Heading styles */
|
||
h1,
|
||
h2,
|
||
h3,
|
||
h4,
|
||
h5,
|
||
h6 {
|
||
line-height: 1.1;
|
||
margin-top: 2.5rem;
|
||
text-wrap: pretty;
|
||
}
|
||
|
||
h1,
|
||
h2 {
|
||
margin-top: 3.5rem;
|
||
margin-bottom: 1.5rem;
|
||
}
|
||
|
||
h1 {
|
||
font-size: 1.4rem;
|
||
}
|
||
|
||
h2 {
|
||
font-size: 1.2rem;
|
||
}
|
||
|
||
h3 {
|
||
font-size: 1.1rem;
|
||
}
|
||
|
||
h4,
|
||
h5,
|
||
h6 {
|
||
font-size: 1rem;
|
||
}
|
||
|
||
/* Code and preformatted text styles */
|
||
code {
|
||
background-color: var(--purple-light);
|
||
border-radius: 0.4rem;
|
||
color: var(--black);
|
||
font-size: 0.85rem;
|
||
padding: 0.25em 0.3em;
|
||
}
|
||
|
||
pre {
|
||
background: var(--black);
|
||
border-radius: 0.5rem;
|
||
color: var(--white);
|
||
font-family: 'JetBrainsMono', monospace;
|
||
margin: 1.5rem 0;
|
||
padding: 0.75rem 1rem;
|
||
|
||
code {
|
||
background: none;
|
||
color: inherit;
|
||
font-size: 0.8rem;
|
||
padding: 0;
|
||
}
|
||
}
|
||
|
||
blockquote {
|
||
border-left: 3px solid var(--gray-3);
|
||
margin: 1.5rem 0;
|
||
padding-left: 1rem;
|
||
}
|
||
|
||
hr {
|
||
border: none;
|
||
border-top: 1px solid var(--gray-2);
|
||
margin: 2rem 0;
|
||
}
|
||
}
|
||
</style>
|