交易所前端蓝色ui, 4.5 jiem
1
lxf
2025-06-13 eee501df08a1f149a2051384d510cfd404ef4ebc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import Vue from 'vue'
import store from './store';
import App from './App.vue'
import i18n from './i18n'
import router from '@/router/router'
import '@/assets/remNew.js'
import moment from 'moment';
// 将 moment 添加到 Vue 的原型中
Vue.prototype.$moment = moment;
 
Vue.config.productionTip = false
Vue.prototype.TITLE = process.env.VUE_APP_TITLE
Vue.prototype.H5ZZ = process.env.VUE_APP_H5ZZ
Vue.prototype.APPZZ = process.env.VUE_APP_APPZZ
import { Button, Row, Col, NavBar, Toast, Loading, Dialog, Tabbar, TabbarItem, NoticeBar, Icon } from 'vant'
Vue.use(Button).use(Row).use(Col).use(NavBar).use(Toast).use(Loading).use(Dialog).use(Tabbar).use(TabbarItem).use(NoticeBar).use(Icon)
window.eventBus = new Vue()
// import FastClick from 'fastclick'
// FastClick.attach(document.body);
 
import VueClipboard from 'vue-clipboard2'
VueClipboard.config.autoSetContainer = true
Vue.use(VueClipboard);
 
 
new Vue({
  //  Router:Router,
  beforeCreate() {
    Vue.prototype.$bus = this;
  },
  store: store,
  i18n,
  router: router,
  render: h => h(App),
}).$mount('#app')