mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
ade87f6729
* docs: standardize unified example code format and fix some example type * docs: update some example type * Update docs/examples/descriptions/sizes.vue Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com> * docs: update example-page-header * docs: update example-page-header --------- Co-authored-by: kooriookami <38392315+kooriookami@users.noreply.github.com>
79 lines
1.6 KiB
Vue
79 lines
1.6 KiB
Vue
<template>
|
|
<el-tabs
|
|
v-model="editableTabsValue"
|
|
type="card"
|
|
editable
|
|
class="demo-tabs"
|
|
@edit="handleTabsEdit"
|
|
>
|
|
<el-tab-pane
|
|
v-for="item in editableTabs"
|
|
:key="item.name"
|
|
:label="item.title"
|
|
:name="item.name"
|
|
>
|
|
{{ item.content }}
|
|
</el-tab-pane>
|
|
</el-tabs>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
import type { TabPaneName } from 'element-plus'
|
|
|
|
let tabIndex = 2
|
|
const editableTabsValue = ref('2')
|
|
const editableTabs = ref([
|
|
{
|
|
title: 'Tab 1',
|
|
name: '1',
|
|
content: 'Tab 1 content',
|
|
},
|
|
{
|
|
title: 'Tab 2',
|
|
name: '2',
|
|
content: 'Tab 2 content',
|
|
},
|
|
])
|
|
|
|
const handleTabsEdit = (
|
|
targetName: TabPaneName | undefined,
|
|
action: 'remove' | 'add'
|
|
) => {
|
|
if (action === 'add') {
|
|
const newTabName = `${++tabIndex}`
|
|
editableTabs.value.push({
|
|
title: 'New Tab',
|
|
name: newTabName,
|
|
content: 'New Tab content',
|
|
})
|
|
editableTabsValue.value = newTabName
|
|
} else if (action === 'remove') {
|
|
const tabs = editableTabs.value
|
|
let activeName = editableTabsValue.value
|
|
if (activeName === targetName) {
|
|
tabs.forEach((tab, index) => {
|
|
if (tab.name === targetName) {
|
|
const nextTab = tabs[index + 1] || tabs[index - 1]
|
|
if (nextTab) {
|
|
activeName = nextTab.name
|
|
}
|
|
}
|
|
})
|
|
}
|
|
|
|
editableTabsValue.value = activeName
|
|
editableTabs.value = tabs.filter((tab) => tab.name !== targetName)
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.demo-tabs > .el-tabs__content {
|
|
padding: 32px;
|
|
color: #6b778c;
|
|
font-size: 32px;
|
|
font-weight: 600;
|
|
}
|
|
</style>
|