新币+dapp app 前端
zzzz
2024-04-08 b78dbd7d2e97cd0d698bc67639d93067bb56781c
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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";
 
Vue.config.productionTip = false;
Vue.prototype.$moment = moment;
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");