09 2022 档案
摘要:vue3与vite下,element-plus组件库怎么实现按需引入 按需引入意义:减小打包后的包体积 全量引入 // main.js import ElementPlus from 'element-plus'; import 'element-plus/dist/index.css'; impo
阅读全文
摘要:在安装了@vitejs/plugin-legacy版本2.x后,运行npm run build进行打包,报错: Cannot destructure property 'renderBuiltUrl' of 'config.experimental' as it is undefined 原因:pl
阅读全文
摘要:安装依赖 @vitejs/plugin-legacy 2.x版本,需要vite3.x版本 yarn add @vitejs/plugin-legacy -D 修改vite.config.js相配置 import legacy from '@vitejs/plugin-legacy'; export
阅读全文