mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-09-02 21:59:54 +08:00
18 lines
366 B
Vue
18 lines
366 B
Vue
<template>
|
|
<component class="tmagic-design-dropdown-menu" :is="uiComponent">
|
|
<slot></slot>
|
|
</component>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { getDesignConfig } from './config';
|
|
|
|
defineOptions({
|
|
name: 'TMDropdownMenu',
|
|
});
|
|
|
|
const ui = getDesignConfig('components')?.dropdownMenu;
|
|
|
|
const uiComponent = ui?.component || 'el-dropdown-menu';
|
|
</script>
|