mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
57 lines
1.3 KiB
Vue
57 lines
1.3 KiB
Vue
<template>
|
|
<component
|
|
class="tmagic-design-input"
|
|
:is="uiComponent"
|
|
v-bind="uiProps"
|
|
@change="changeHandler"
|
|
@input="inputHandler"
|
|
@update:modelValue="updateModelValue"
|
|
>
|
|
<template #prepend v-if="$slots.prepend">
|
|
<slot name="prepend"></slot>
|
|
</template>
|
|
<template #append v-if="$slots.append">
|
|
<slot name="append"></slot>
|
|
</template>
|
|
<template #prefix v-if="$slots.prefix">
|
|
<slot name="prefix"></slot>
|
|
</template>
|
|
<template #suffix v-if="$slots.suffix">
|
|
<slot name="suffix"></slot>
|
|
</template>
|
|
</component>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed } from 'vue';
|
|
|
|
import { getConfig } from './config';
|
|
import type { InputProps } from './types';
|
|
|
|
defineOptions({
|
|
name: 'TMInput',
|
|
});
|
|
|
|
const props = defineProps<InputProps>();
|
|
|
|
const ui = getConfig('components')?.input;
|
|
|
|
const uiComponent = ui?.component || 'el-input';
|
|
|
|
const uiProps = computed(() => ui?.props(props) || props);
|
|
|
|
const emit = defineEmits(['change', 'input', 'update:modelValue']);
|
|
|
|
const changeHandler = (...args: any[]) => {
|
|
emit('change', ...args);
|
|
};
|
|
|
|
const inputHandler = (...args: any[]) => {
|
|
emit('input', ...args);
|
|
};
|
|
|
|
const updateModelValue = (...args: any[]) => {
|
|
emit('update:modelValue', ...args);
|
|
};
|
|
</script>
|