30 lines
514 B
JavaScript
30 lines
514 B
JavaScript
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import store from './store'
|
|
|
|
import Vant from 'vant';
|
|
import 'vant/lib/index.css';
|
|
|
|
Vue.use(Vant);
|
|
|
|
import utils from "./utils";
|
|
import index from "./http/service"
|
|
|
|
import { PasswordInput, NumberKeyboard } from 'vant';
|
|
|
|
Vue.use(PasswordInput);
|
|
Vue.use(NumberKeyboard);
|
|
|
|
Vue.prototype.$http = index;
|
|
Vue.prototype.$utils = utils;
|
|
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
new Vue({
|
|
router,
|
|
store,
|
|
render: h => h(App)
|
|
}).$mount('#app')
|