feat(design): input支持textarea rows

This commit is contained in:
roymondchen 2023-08-08 16:14:36 +08:00
parent 44efb3a967
commit 63d8c98822
2 changed files with 26 additions and 2 deletions

View File

@ -1,5 +1,6 @@
<template>
<component
ref="instance"
class="tmagic-design-input"
:is="uiComponent"
v-bind="uiProps"
@ -23,7 +24,7 @@
</template>
<script setup lang="ts">
import { computed } from 'vue';
import { computed, ref } from 'vue';
import { getConfig } from './config';
import type { InputProps } from './types';
@ -42,6 +43,8 @@ const uiProps = computed(() => ui?.props(props) || props);
const emit = defineEmits(['change', 'input', 'update:modelValue']);
const instance = ref<any>();
const changeHandler = (...args: any[]) => {
emit('change', ...args);
};
@ -53,4 +56,14 @@ const inputHandler = (...args: any[]) => {
const updateModelValue = (...args: any[]) => {
emit('update:modelValue', ...args);
};
defineExpose({
instance,
getInput() {
return instance.value.input;
},
getTextarea() {
return instance.value.textarea;
},
});
</script>

View File

@ -181,6 +181,7 @@ export interface InputProps {
clearable?: boolean;
disabled?: boolean;
placeholder?: string;
rows?: number;
type?: string;
size?: FieldSize;
}
@ -515,7 +516,17 @@ export interface Components {
};
input: {
component: DefineComponent<InputProps, {}, any> | string;
component:
| DefineComponent<
InputProps,
{
instance: any;
getInput: () => HTMLInputElement | undefined;
getTextarea: () => HTMLTextAreaElement | undefined;
},
any
>
| string;
props: (props: InputProps) => InputProps;
};