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.
42 lines
1.1 KiB
42 lines
1.1 KiB
/*
|
|
* @Author: your name
|
|
* @Date: 2021-10-08 08:41:57
|
|
* @LastEditTime: 2021-12-10 13:39:29
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /data-show/src/main.js
|
|
*/
|
|
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import 'normalize.css/normalize.css';
|
|
import './styles/index.less';
|
|
import Antd from 'ant-design-vue';
|
|
import VueLazyComponent from '@xunlei/vue-lazy-component'
|
|
import 'ant-design-vue/dist/antd.css';
|
|
import router from "@/permission";
|
|
import store from "@/store";
|
|
import dataV from '@jiaminghi/data-view';
|
|
import selfUi from "@/components/index.js";
|
|
import compon from "@/lycomponents/index.js";
|
|
import mixins from "@/mixins"
|
|
import vuescroll from 'vuescroll'
|
|
import createOps from '@/utils/gol/ops';
|
|
|
|
import '@/utils/rem';
|
|
|
|
|
|
Vue.use(Antd);
|
|
Vue.use(dataV);
|
|
Vue.use(selfUi);
|
|
Vue.use(compon);
|
|
Vue.use(mixins);
|
|
Vue.use(VueLazyComponent);
|
|
Vue.use(vuescroll, {ops: createOps(true, true),name: 'vue-scroll'});
|
|
Vue.config.productionTip = false
|
|
Vue.prototype.$vuiSize = 'small'
|
|
new Vue({
|
|
render: h => h(App),
|
|
router,
|
|
store
|
|
}).$mount('#app')
|