更新记录
v1.0.0(2020-03-20)
下载此版本
- 支持自定义内容
- 支持自定义背景颜色
- 支持自定义位置(position = left || right)
- 支持自定义大小(size = small || middle)
平台兼容性
import popupBar from '@/components/popup-bar/popup-bar.vue';
export default {
components:{
popupBar
},
}
<template>
<view class="content">
<popupBar size="middle" position="right" bgColor="#10baaa">
<view slot="main" class="refrash_wrap" @click="handleRefrash">
<image class="icon" src="../../static/refrash.png"></image>
<view class="text">重置</view>
</view>
</popupBar>
</view>
</template>