在这种情况下如何使用vue mixin?

时间:2019-10-24 10:25:36

标签: vue.js vuejs2 mixins vue-mixin

我在两个vue组件中具有以下代码:

  data() {
    return {
      overlay: false
    };
  },
  created() {
    EventBus.$on("toggleSidebar", status => (this.overlay = status));
  }

如何在mixin中使用它?

这是我的mixin(toggle.js)

import EventBus from "@/eventBus";

const toggle = () => {
  return {
    data() {
      return {
        show: false
      };
    },
    created() {
      EventBus.$on("toggleSidebar", status => (this.show = status));
    }
  };
};

export default toggle;

但是我不能使用它

1 个答案:

答案 0 :(得分:0)

import EventBus from "@/eventBus";

const toggle = {
  data() {
    return {
      show: false
    };
  },
  created() {
    EventBus.$on("toggleSidebar", status => (this.show = status));
  }
};

export default toggle;