Split 分割面板
可拖拽分割面板。
vue
<ASplit direction="horizontal" default-size="50%">
<template #default>
<div>左侧面板</div>
<div>右侧面板</div>
</template>
</ASplit>| 属性 | 类型 | 默认值 | 说明 |
|---|---|---|---|
| direction | 'horizontal'|'vertical' | 'horizontal' | 方向 |
| defaultSize | string | '50%' | 默认比例 |
| min | string|number | '100px' | 最小尺寸 |
FloatButton 浮动按钮
vue
<AFloatButton type="primary" @click="scrollToTop">↑</AFloatButton>| 属性 | 类型 | 默认值 | 说明 |
|---|---|---|---|
| type | 'default'|'primary' | 'primary' | 类型 |
| shape | 'circle'|'square' | 'circle' | 形状 |
| right | number|string | 40 | 右侧距离 |
| bottom | number|string | 40 | 底部距离 |