import './themes/index.css'; import { Lazyload } from 'vant'; import 'vant/es/toast/style' import 'vant/es/notify/style' 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); }, );