You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< docs >
-- -
order : 6
title :
zh - CN : 额外节点
en - US : Extra node
-- -
# # zh - CN
可以同时展开多个面板 , 这个例子默认展开了第一个 。
# # en - US
More than one panel can be expanded at a time , the first panel is initialized to be active in this case .
< / docs >
< template >
< a -collapse v -model :activeKey ="activeKey" :expand-icon-position ="expandIconPosition" >
< a -collapse -panel key = "1" header = "This is panel header 1" >
< p > { { text } } < / p >
< template # extra > < setting -outlined @click ="handleClick" / > < / template >
< / a - c o l l a p s e - p a n e l >
< a -collapse -panel key = "2" header = "This is panel header 2" >
< p > { { text } } < / p >
< template # extra > < setting -outlined @click ="handleClick" / > < / template >
< / a - c o l l a p s e - p a n e l >
< a -collapse -panel key = "3" header = "This is panel header 3" collapsible = "disabled" >
< p > { { text } } < / p >
< template # extra > < setting -outlined @click ="handleClick" / > < / template >
< / a - c o l l a p s e - p a n e l >
< / a - c o l l a p s e >
< br / >
< span > Expand Icon Position : < / span >
< a -select v -model :value ="expandIconPosition" >
< a -select -option value = "left" > left < / a - s e l e c t - o p t i o n >
< a -select -option value = "right" > right < / a - s e l e c t - o p t i o n >
< / a - s e l e c t >
< / template >
< script lang = "ts" >
import { SettingOutlined } from '@ant-design/icons-vue' ;
import { defineComponent , ref , watch } from 'vue' ;
import type { CollapseProps } from 'ant-design-vue' ;
export default defineComponent ( {
components : {
SettingOutlined ,
} ,
setup ( ) {
const text = ` A dog is a type of domesticated animal.Known for its loyalty and faithfulness,it can be found as a welcome guest in many households across the world. ` ;
const activeKey = ref ( [ '1' ] ) ;
const expandIconPosition = ref < CollapseProps [ ' expandIconPosition ' ] > ( 'left' ) ;
const handleClick = ( event : MouseEvent ) => {
// If you don't want click extra trigger collapse, you can prevent this:
event . stopPropagation ( ) ;
} ;
watch ( activeKey , val => {
console . log ( val ) ;
} ) ;
return {
text ,
activeKey ,
expandIconPosition ,
handleClick ,
} ;
} ,
} ) ;
< / script >