Editor

The editor component is a wrapper around the TipTap editor. It offers a simple way to build a rich text editor.

You can simple use it inside a modal:

<EditorModal v-model="value" title="Edit"></EditorModal>
import EditorModal from "@/basic/editor/Modal.vue";

export default {
    components: {
        EditorModal
    },
    data() {
        return {
            value: "<p>Some text</p>"
        }
    }
}

Tip

You can also use it inside a form.