0
0
vite/vue Top-level await
文章摘要
|
npm安装vite-plugin-top-level-await插件
npm install vite-plugin-top-level-await -D
配置vite.config.js文件
导入
import topLevelAwait from 'vite-plugin-top-level-await';
在plugins中添加topLevelAwait方法
plugins: [
topLevelAwait({
promiseExportName: '__tla',
promiseImportName: i => `__tla_${i}`
})
]
