fix(design): tabs支持modelValue

This commit is contained in:
roymondchen 2022-11-23 15:40:02 +08:00
parent a4f9467d53
commit 47e851ce5e

View File

@ -5,6 +5,7 @@
@tab-click="tabClickHandler"
@tab-add="onTabAdd"
@tab-remove="onTabRemove"
@update:model-value="updateModelName"
>
<template #default>
<slot></slot>
@ -21,13 +22,14 @@ const props = defineProps<{
type?: string;
editable?: boolean;
tabPosition?: string;
modelValue?: string | number;
}>();
const uiComponent = getConfig('components').tabs;
const uiProps = computed(() => uiComponent.props(props));
const emit = defineEmits(['tab-click', 'tab-add', 'tab-remove']);
const emit = defineEmits(['tab-click', 'tab-add', 'tab-remove', 'update:model-value']);
const tabClickHandler = (...args: any[]) => {
emit('tab-click', ...args);
@ -40,4 +42,8 @@ const onTabAdd = (...args: any[]) => {
const onTabRemove = (...args: any[]) => {
emit('tab-remove', ...args);
};
const updateModelName = (...args: any[]) => {
emit('update:model-value', ...args);
};
</script>