Browse Source

fix: operationNodeProps ts error

pull/6800/head
tangjinzhou 1 year ago
parent
commit
823b3ddd11
  1. 7
      components/tabs/src/TabNavList/OperationNode.tsx

7
components/tabs/src/TabNavList/OperationNode.tsx

@ -14,7 +14,7 @@ import EllipsisOutlined from '@ant-design/icons-vue/EllipsisOutlined';
export const operationNodeProps = { export const operationNodeProps = {
prefixCls: { type: String }, prefixCls: { type: String },
id: { type: String }, id: { type: String },
tabs: { type: Object as PropType<(Tab & { closeIcon?: () => any })[]> }, tabs: { type: Array as PropType<(Tab & { closeIcon?: () => any })[]> },
rtl: { type: Boolean }, rtl: { type: Boolean },
tabBarGutter: { type: Number }, tabBarGutter: { type: Number },
activeKey: { type: [String, Number] }, activeKey: { type: [String, Number] },
@ -124,10 +124,11 @@ export default defineComponent({
watch( watch(
() => props.tabs.length, () => props.tabs.length,
val => { val => {
if(!val) { if (!val) {
setOpen(false); setOpen(false);
} }
}); },
);
return () => { return () => {
const { const {

Loading…
Cancel
Save