| 12345678910111213141516171819202122 |
- /*
- * @Descripttion: babel配置
- * @version: 1.0.0
- * @Author: dream
- * @Date: 2021-04-09 13:45:46
- * @LastEditors: dream
- * @LastEditTime: 2021-04-09 14:36:24
- */
- module.exports = {
- presets: [
- '@vue/cli-plugin-babel/preset'
- ],
- plugins: [
- [
- 'component',
- {
- libraryName: 'element-ui',
- styleLibraryName: 'theme-chalk'
- }
- ]
- ]
- }
|