[vue with typesciprt] props 是枚举值如何声明

import Vue, { PropType } from 'vue'

enum FruitType {
  banner,
  apple,
}

export default Vue.extend({
  components: {},
  props: {
    fruit: Number as PropType
  },
})

你可能感兴趣的:([vue with typesciprt] props 是枚举值如何声明)