ZZJ
2022-07-28 edef6ae8f59823258ce610c9074d32e698958b51
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
  }
}