# PmFloatingPane
# 基本用法
<template>
<div style="height:40px">
<pm-floating-pane data="copy" maxHeight="400px">
<el-row type="flex" justify="center" slot="max">
<el-button >max</el-button>
</el-row>
<el-row type="flex" justify="center" slot="min">
<el-button>min</el-button>
</el-row>
</pm-floating-pane>
</div>
</template>
# Attributes
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
|---|---|---|---|---|
| isMax | 是否展开 | boolean | - | false |
| maxHeight | 展开最大高度 | string | - | 800px |
| minHeight | 最小高度 | string | - | 40px |
| bgColor | 浮动面板背景颜色 | string | - | #E4E7ED |