zhangzengfei
2021-03-15 f86e41e97c01355d483475511a0fe3834a85061d
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
  }
}