1234567891011121314151617181920212223 |
- import './themes/index.css';
- import { Lazyload } from 'vant';
- import 'vant/es/toast/style'
- import 'vant/es/notify/style'
- import 'vant/es/dialog/style'
- import './polyfill'
- import App from './App.vue';
- import launch, { debugLaunch, platformLaunch } from '@/core/launch';
- launch(App, [
- debugLaunch('debug', true),
- platformLaunch()
- ]).then(
- (app) => {
- app.use(Lazyload, { lazyComponent: true });
- app.mount('#app');
- },
- (error) => {
- alert(error);
- },
- );
|