82 lines
2.0 KiB
Vue
82 lines
2.0 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">
|
||
import { defineComponent, ref } from 'vue';
|
||
|
||
export default defineComponent({
|
||
setup() {
|
||
const panes = ref<{ title: string; content: string; key: string; closable?: boolean }[]>([
|
||
{ title: 'Tab 1', content: 'Content of Tab 1', key: '1' },
|
||
{ title: 'Tab 2', content: 'Content of Tab 2', key: '2' },
|
||
]);
|
||
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);
|
||
};
|
||
|
||
return {
|
||
panes,
|
||
activeKey,
|
||
onEdit,
|
||
add,
|
||
};
|
||
},
|
||
});
|
||
</script>
|