mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-02 03:58:05 +08:00
9be58078d2
* feat(demo): A-B * feat(demo): update B-checkbox * feat(demo): update CheckBox -DatePicker * feat(demo): update DatePicker - Form * feat(demo): update Form - List * feat(demo): update List-pagination * feat(demo): update List - skeleton * feat(demo): update skeleton - switch * feat(demo): update skeleton - switch * feat(demo): update switch - upload * feat(demo): update watermark * fix(demo): del hashId
73 lines
1.8 KiB
Vue
73 lines
1.8 KiB
Vue
<docs>
|
||
---
|
||
order: 10
|
||
title:
|
||
zh-CN: 自定义新增页签触发器
|
||
en-US: Customized trigger of new tab
|
||
---
|
||
|
||
## zh-CN
|
||
|
||
隐藏默认的页签增加图标,给自定义触发器绑定事件。
|
||
|
||
## en-US
|
||
|
||
Hide default plus icon, and bind event for customized trigger.
|
||
|
||
</docs>
|
||
|
||
<template>
|
||
<div>
|
||
<div :style="{ marginBottom: '16px' }">
|
||
<a-button @click="add">ADD</a-button>
|
||
</div>
|
||
<a-tabs v-model:activeKey="activeKey" hide-add type="editable-card" @edit="onEdit">
|
||
<a-tab-pane v-for="pane in panes" :key="pane.key" :tab="pane.title" :closable="pane.closable">
|
||
{{ pane.content }}
|
||
</a-tab-pane>
|
||
</a-tabs>
|
||
</div>
|
||
</template>
|
||
<script lang="ts" setup>
|
||
import { ref } from 'vue';
|
||
|
||
const panes = ref<{ title: string; content: string; key: string; closable?: boolean }[]>(
|
||
new Array(2).fill(null).map((_, index) => {
|
||
const id = String(index + 1);
|
||
return { title: `Tab ${id}`, content: `Content of Tab Pane ${id}`, key: id };
|
||
}),
|
||
);
|
||
const activeKey = ref(panes.value[0].key);
|
||
const newTabIndex = ref(0);
|
||
|
||
const add = () => {
|
||
activeKey.value = `newTab${newTabIndex.value++}`;
|
||
panes.value.push({
|
||
title: `New Tab ${activeKey.value}`,
|
||
content: `Content of new Tab ${activeKey.value}`,
|
||
key: activeKey.value,
|
||
});
|
||
};
|
||
|
||
const remove = (targetKey: string) => {
|
||
let lastIndex = 0;
|
||
panes.value.forEach((pane, i) => {
|
||
if (pane.key === targetKey) {
|
||
lastIndex = i - 1;
|
||
}
|
||
});
|
||
panes.value = panes.value.filter(pane => pane.key !== targetKey);
|
||
if (panes.value.length && activeKey.value === targetKey) {
|
||
if (lastIndex >= 0) {
|
||
activeKey.value = panes.value[lastIndex].key;
|
||
} else {
|
||
activeKey.value = panes.value[0].key;
|
||
}
|
||
}
|
||
};
|
||
|
||
const onEdit = (targetKey: string) => {
|
||
remove(targetKey);
|
||
};
|
||
</script>
|