Closed
Description
What problem does this feature solve?
Is there ability to use common mixin file with setup method for several components?
// mixin.js
export default {
setup: => { console.log(123); }
}
// component.js
import mixin from 'mixin.js';
export default {
mixins: [mixin], // <- "setup is not available, but data-property or any other methods work"
}
What does the proposed API look like?
idk
Metadata
Assignees
Labels
No labels