tiptapify
Version:
Tiptap3 editor with Vuetify3 menu implementation
18 lines (17 loc) • 444 B
text/typescript
import { default as UndoButton } from "@tiptapify/extensions/components/actions/undo/Button.vue";
import { default as RedoButton } from "@tiptapify/extensions/components/actions/redo/Button.vue";
import { markRaw } from "vue";
export default {
section: 'actions',
group: true,
components: [
{
name: 'undo',
component: markRaw(UndoButton),
},
{
name: 'redo',
component: markRaw(RedoButton),
}
]
}