多租户商城-商户小程序端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
495 B

2 years ago
  1. /*
  2. * 用于组件复用
  3. * 参考链接 https://cn.vuejs.org/v2/guide/mixins.html#全局混合
  4. * 混合 (mixins) 是一种分发 Vue 组件中可复用功能的非常灵活的方式混合对象可以包含任意组件选项以组件使用混合对象时所有混合对象的选项将被混入该组件本身的选项
  5. */
  6. import { tool } from './funMixin.js'
  7. import { sendReq } from './sendReqMixin.js'
  8. export const funMixin = { ...tool }
  9. export const sendReqMixin = { ...sendReq }