zhangzengfei
2022-08-05 012c84b59018018cd75f0b8c70f7492fcb3e3e6f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export const uploaderMixin = {
  inject: ['uploader']
}
 
export const supportMixin = {
  data () {
    return {
      support: true
    }
  },
  mounted () {
    this.support = this.uploader.uploader.support
  }
}