import { XProgress } from 'vux'
export default {
components: {
XProgress
}
}
// 在入口文件全局引入
import Vue from 'vue'
import { XProgress } from 'vux'
Vue.component('x-progress', XProgress)
名字 | 类型 | 默认值 | 说明 | 版本要求 |
percent | number | 0 | 进度值,0到100 | -- |
show-cancel | boolean | true | 是否显示取消按钮 | -- |
名字 | 参数 | 说明 | 版本要求 |
@on-cancel | -- | 点击取消按钮时触发 | -- |