utils.js 172 B

1234567891011
  1. // 自定义全局方法封装
  2. const utils = {
  3. test: function () {},
  4. }
  5. export default () => {
  6. if (typeof window.utils == 'undefined') {
  7. window.utils = utils
  8. }
  9. }