Skip to content

OMainMenu

API

Usage

vue
<template>
  <YiiEditor ref="yiiEditor" v-bind="options" />
  <o-main-menu
      :editor="yiiEditor?.editor"
      v-if="editor?.isEditable"
  />
</template>

<script setup lang="ts">
import { computed, ref } from 'vue'
import { YiiEditor, OMainMenu } from '@yiitap/vue'

const yiiEditor = ref<InstanceType<typeof YiiEditor>>()

const editor = computed(() => {
  return yiiEditor.value?.editor
})
</script>

TIP

Show or hide OMainMenu use YiiEditor's property showMainMenu.

MIT Licensed.