TheJaredWilcurt / vue-doxen

The world's best Vue.js component documentation tool
http://TheJaredWilcurt.github.io/vue-doxen
MIT License
6 stars 0 forks source link

Get prop types from shorthand #101

Open TheJaredWilcurt opened 2 weeks ago

TheJaredWilcurt commented 2 weeks ago

Vue-Doxen currently ignores the following, but it could detect it and then grab the type info from it.

export default {
  name: 'MyComponent',
  props: {
    asdf: String,
    qwer: Number,
    zxcv: [String, Array]
  }
};