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