* chore: add precommit hook for eslint fixes, fix linting issues * chore: add eslint import sort plugin
73 lines
1.4 KiB
Vue
73 lines
1.4 KiB
Vue
<template>
|
||
<div v-if="editor">
|
||
<button @click="editor.chain().focus().toggleCode().run()" :class="{ 'is-active': editor.isActive('code') }">
|
||
toggleCode
|
||
</button>
|
||
<button @click="editor.chain().focus().setCode().run()" :disabled="editor.isActive('code')">
|
||
setCode
|
||
</button>
|
||
<button @click="editor.chain().focus().unsetCode().run()" :disabled="!editor.isActive('code')">
|
||
unsetCode
|
||
</button>
|
||
|
||
<editor-content :editor="editor" />
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import Code from '@tiptap/extension-code'
|
||
import Document from '@tiptap/extension-document'
|
||
import Paragraph from '@tiptap/extension-paragraph'
|
||
import Text from '@tiptap/extension-text'
|
||
import { Editor, EditorContent } from '@tiptap/vue-3'
|
||
|
||
export default {
|
||
components: {
|
||
EditorContent,
|
||
},
|
||
|
||
data() {
|
||
return {
|
||
editor: null,
|
||
}
|
||
},
|
||
|
||
mounted() {
|
||
this.editor = new Editor({
|
||
extensions: [
|
||
Document,
|
||
Paragraph,
|
||
Text,
|
||
Code,
|
||
],
|
||
content: `
|
||
<p>This isn’t code.</p>
|
||
<p><code>This is code.</code></p>
|
||
`,
|
||
})
|
||
},
|
||
|
||
beforeUnmount() {
|
||
this.editor.destroy()
|
||
},
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
/* Basic editor styles */
|
||
.ProseMirror {
|
||
> * + * {
|
||
margin-top: 0.75em;
|
||
}
|
||
|
||
code {
|
||
font-size: 0.9rem;
|
||
padding: 0.25em;
|
||
border-radius: 0.25em;
|
||
background-color: rgba(#616161, 0.1);
|
||
color: #616161;
|
||
box-decoration-break: clone;
|
||
}
|
||
}
|
||
</style>
|