Text Editor Vue Component

    Text Editor Vue component represents Text Editor component.

    There are following components included:

    EventArgumentsDescription
    <f7-text-editor> events
    texteditor:change(value)Event will be triggered when editor value has been changed
    texteditor:inputEvent will be triggered on editor’s content “input” event
    texteditor:focusEvent will be triggered on editor’s content focus
    texteditor:blurEvent will be triggered on editor’s content blur
    texteditor:buttonclick(buttonId)Event will be triggered on editor button click
    texteditor:keyboardopenEvent will be triggered when editor keyboard toolbar appears
    texteditor:keyboardcloseEvent will be triggered when editor keyboard toolbar disappears
    texteditor:popoveropenEvent will be triggered on editor popover open
    texteditor:popovercloseEvent will be triggered on editor popover close
    texteditor:beforedestroyEvent will be triggered right before Text Editor instance will be destroyed

    If you need to use you can access its initialized instance by accessing .f7TextEditor component’s property.

    Toggle →