12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- import App from './App'
- // main.js 文件
- import uView from "uview-ui";
- import './ajax/bootstrap';
- import JSEncrypt from 'components/jsencrypt/bin/jsencrypt.js'
- uni.$jsencrypt = JSEncrypt;
- Vue.use(uView);
- // #ifndef VUE3
- import Vue from 'vue'
- Vue.config.productionTip = false
- App.mpType = 'app'
- const app = new Vue({
- ...App
- })
- app.$mount()
- // #endif
- import '@/ajax/lcsign.js'
- //全局公用函数
- import {api} from "common.js"
- Vue.prototype.$api=api
- Vue.prototype.href=api.to
- Vue.prototype.rdt=api.rdt
- Vue.prototype.back=api.back
- Vue.prototype.totabar=api.totabar
- Vue.prototype.link=api.link
- //挂在vuex
- import store from "./store/index.js"
- Vue.prototype.$store=store
- // 引用request
- import request from "./ajax/index.js"
- Vue.prototype.$request = request
- // api接口管理
- import api1 from "./ajax/api.js"
- Vue.prototype.api = api1
- // 下载APP
- import down from '@/components/my/download.vue'
- Vue.component('down', down);
- // #ifdef VUE3
- import { createSSRApp } from 'vue'
- export function createApp() {
- const app = createSSRApp(App)
- return {
- app,
- store
- }
- }
- // #endif
|