mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
33 lines
734 B
Vue
33 lines
734 B
Vue
<template>
|
|
<component class="tmagic-design-button" :is="uiComponent" v-bind="uiProps" @click="clickHandler">
|
|
<template #default v-if="$slots.default">
|
|
<slot></slot>
|
|
</template>
|
|
</component>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed } from 'vue';
|
|
|
|
import { getDesignConfig } from './config';
|
|
import type { ButtonProps } from './types';
|
|
|
|
defineOptions({
|
|
name: 'TMButton',
|
|
});
|
|
|
|
const props = defineProps<ButtonProps>();
|
|
|
|
const ui = getDesignConfig('components')?.button;
|
|
|
|
const uiComponent = ui?.component || 'el-button';
|
|
|
|
const uiProps = computed(() => ui?.props(props) || props);
|
|
|
|
const emit = defineEmits(['click']);
|
|
|
|
const clickHandler = (...args: any[]) => {
|
|
emit('click', ...args);
|
|
};
|
|
</script>
|