x-php-Admin/src/main.js
2023-11-20 19:05:45 +08:00

37 lines
885 B
JavaScript

import { createApp } from 'vue'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import 'element-plus/theme-chalk/display.css'
import x from './x'
import router from './router'
import store from './store'
import App from './App.vue'
const app = createApp(App);
const debounce = (fn, delay) => {
let timer = null;
return function () {
let context = this;
let args = arguments;
clearTimeout(timer);
timer = setTimeout(function () {
fn.apply(context, args);
}, delay);
}
}
const _ResizeObserver = window.ResizeObserver;
window.ResizeObserver = class ResizeObserver extends _ResizeObserver {
constructor(callback) {
callback = debounce(callback, 16);
super(callback);
}
}
app.use(store);
app.use(router);
app.use(ElementPlus);
app.use(x);
//挂载 app
app.mount('#app');