ZZJ
2022-09-27 f2ef9272ed076bdca33d21b39bcc671e576553b3
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
  }
}