scan-code.js 261 字节
Newer Older
1 2 3 4 5 6 7 8 9
export const scanCode = {
  onlyFromCamera: {
    type: Boolean
  },
  scanType: {
    type: Array
  },
  autoDecodeCharSet: {
    type: Boolean
D
DCloud_LXH 已提交
10 11 12 13
  },
  sound: {
    type: String,
    default: 'none'
14 15 16 17
  },
  autoZoom: {
    type: Boolean,
    default: true
18 19
  }
}