mirror of https://github.com/ElemeFE/element
fix typo
parent
adc09b28f8
commit
c4a864810b
|
@ -31,8 +31,8 @@ import {
|
||||||
// ...
|
// ...
|
||||||
} from 'element-ui'
|
} from 'element-ui'
|
||||||
|
|
||||||
Vue.component(Select.name, ElSelect)
|
Vue.component(Select.name, Select)
|
||||||
Vue.component(Button.name, ElButton)
|
Vue.component(Button.name, Button)
|
||||||
```
|
```
|
||||||
|
|
||||||
(roughly) to
|
(roughly) to
|
||||||
|
@ -50,8 +50,8 @@ import Select from 'element-ui/lib/theme-default/select.css';
|
||||||
import Button from 'element-ui/lib/button';
|
import Button from 'element-ui/lib/button';
|
||||||
import Button from 'element-ui/lib/theme-default/button.css';
|
import Button from 'element-ui/lib/theme-default/button.css';
|
||||||
|
|
||||||
Vue.component(Select.name, ElSelect)
|
Vue.component(Select.name, Select)
|
||||||
Vue.component(Button.name, ElButton)
|
Vue.component(Button.name, Button)
|
||||||
```
|
```
|
||||||
|
|
||||||
## babel-plugin-component
|
## babel-plugin-component
|
||||||
|
|
Loading…
Reference in New Issue