mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-09-16 17:50:04 +08:00
47 lines
981 B
Vue
47 lines
981 B
Vue
<template>
|
|
<component
|
|
class="tmagic-design-dialog"
|
|
:is="uiComponent.component"
|
|
v-bind="uiProps"
|
|
@close="closeHandler"
|
|
@update:modelValue="updateModelValue"
|
|
>
|
|
<slot></slot>
|
|
|
|
<template #footer>
|
|
<slot name="footer"></slot>
|
|
</template>
|
|
</component>
|
|
</template>
|
|
|
|
<script setup lang="ts" name="TMDialog">
|
|
import { computed } from 'vue';
|
|
|
|
import { getConfig } from './config';
|
|
|
|
const props = defineProps<{
|
|
modelValue?: boolean;
|
|
appendToBody?: boolean;
|
|
beforeClose?: any;
|
|
title?: string;
|
|
width?: string | number;
|
|
fullscreen?: boolean;
|
|
closeOnClickModal?: boolean;
|
|
closeOnPressEscape?: boolean;
|
|
}>();
|
|
|
|
const uiComponent = getConfig('components').dialog;
|
|
|
|
const uiProps = computed(() => uiComponent.props(props));
|
|
|
|
const emit = defineEmits(['close', 'update:modelValue']);
|
|
|
|
const closeHandler = (...args: any[]) => {
|
|
emit('close', ...args);
|
|
};
|
|
|
|
const updateModelValue = (v: any) => {
|
|
emit('update:modelValue', v);
|
|
};
|
|
</script>
|