index.js 181 Bytes
import bus from "../utils/bus";
// 全局混入将会影响每个单文件组件,请慎重思考是否要混入
export default {
  data() {
    return {
      bus,
    };
  },
};