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.
37 lines
965 B
37 lines
965 B
<docs>
|
|
---
|
|
order: 5
|
|
title:
|
|
zh-CN: 隐藏箭头
|
|
en-US: No arrow
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
你可以通过 `:showArrow="false"` 隐藏 `a-collapse-panel` 组件的箭头图标。
|
|
|
|
## en-US
|
|
You can hide the arrow icon by passing `showArrow={false}` to `CollapsePanel` component.
|
|
|
|
</docs>
|
|
|
|
<template>
|
|
<a-collapse v-model:activeKey="activeKey">
|
|
<a-collapse-panel key="1" header="This is panel header with arrow icon">
|
|
<p>{{ text }}</p>
|
|
</a-collapse-panel>
|
|
<a-collapse-panel key="2" header="This is panel header with no arrow icon" :show-arrow="false">
|
|
<p>{{ text }}</p>
|
|
</a-collapse-panel>
|
|
</a-collapse>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { ref, watch } from 'vue';
|
|
const activeKey = ref(['1']);
|
|
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.`;
|
|
|
|
watch(activeKey, val => {
|
|
console.log('activeKey', val);
|
|
});
|
|
</script>
|