This repository was archived by the owner on Mar 8, 2019. It is now read-only.

Description
At the moment if a mixins.js file contains more than one file the document parser loads all mixins for each component.
It would be better to only load the mixin that are mentionned in the mixin property of the documented component.
example
import { mixin1, mixins2 } from './mixins'
export default {
name: 'testMixins'
mixins: [mixin1]
}
Here we should obtain documentation for testMixins
extended with mixin1
.
Instead, we get mixin1
and mixin2
.