const mixin = { data() { return { countMixin: 0 }; }, methods: { incrementMixin() { this.countMixin++; } } }. 然後我們在App.vue 使用mixins ...
確定! 回上一頁