commonMixin.js 246 B

123456789101112131415161718
  1. /**
  2. * 把vuex的数据和方法混入注册到每个组件中
  3. */
  4. import Vue from 'vue'
  5. export default {
  6. install(Vue) {
  7. Vue.mixin({
  8. data() {
  9. return {
  10. };
  11. },
  12. created(){
  13. this.ispay = true;
  14. }
  15. });
  16. }
  17. };