num: { type: [String, Number], //String | Number default: '0' }
注意:
使用 String | Number 有些eslint会报错 The "num" property should be a constructor.eslintvue/require-prop-type-constructor
改传数组就行了 [String, Number]