An open API service indexing awesome lists of open source software.

https://github.com/qinzhen001/babel-plugin-import

:whale: 仿造 babel-plugin-import
https://github.com/qinzhen001/babel-plugin-import

babel babel-plugin

Last synced: about 2 months ago
JSON representation

:whale: 仿造 babel-plugin-import

Awesome Lists containing this project

README

          

# babel-plugin-import
仿造 babel-plugin-import

## 补充

```js
import { Button } from 'antd';
import View from 'antd';
import * as Swiper from 'antd';
```

* Button 为 ImportSpecifier
* View 为 ImportDefaultSpecifier
* `*` as Swiper 为 ImportNamespaceSpecifier

----

```js
import('./dialogBox.js')
```

* 这是CallExpression
* 其中里面的callee 为 Import