Popover

Popover

demo 原始链接demo 源码编辑文档组件源码

popover - 图1

二维码

popover - 图2

Install

安装

局部注册

全局注册

  1. import { Popover } from 'vux'
  2. export default {
  3. components: {
  4. Popover
  5. }
  6. }

  1. // 在入口文件全局引入
  2. import Vue from 'vue'
  3. import { Popover } from 'vux'
  4. Vue.component('popover', Popover)

API

属性

名字类型默认值说明版本要求
contentstring弹出窗口内容
placementstring弹出窗口位置
gutternumber5箭头和触发元素之间的距离

事件

名字参数说明版本要求
@on-show弹窗显示时触发
@on-hide弹窗隐藏时触发

插槽

名字说明版本要求
默认插槽触发元素
content弹窗内容

Variables

## 样式变量


名字默认值说明继承自变量
@popover-bg-color #35495e
@popover-font-color #fff
@popover-border-radius 3px
@popover-border-width 5px

Issues

相关 issue

贡献者

贡献者

该组件(包含文档)迭代次数 8,贡献人数 2
Jackairyland

Changelog

发布日志

  • v2.9.0 [fix] 修复在 fixed 容器里定位不正确 #2590
  • v2.0.0 [todo] 当切换i18n语言时,位置不正确