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
216 B

3 months ago
  1. /**
  2. * 全局使用的变量值
  3. */
  4. import Cache from '@/utils/cache'
  5. import Vue from 'vue'
  6. const global = {
  7. //图片域名
  8. urlDomain: Cache.get('imgHost')?Cache.get('imgHost'):''
  9. }
  10. Vue.prototype.$GLOBAL = global