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

Support for mixins #96

Open TheJaredWilcurt opened 1 month ago

TheJaredWilcurt commented 1 month ago

Mixins are not merged by default, we need to look for them and merge them ourselves.

{
  name: 'MyComponent',
  props: {
    amount: {...}
  },
  mixins: [
    {
      props: {
        color: {...}
      }
    },
    {
      props: {
        amount: {...}
      }
    }
  ]
}