Commit c4a86481 authored by qingwei.li's avatar qingwei.li

fix typo

parent adc09b28
......@@ -31,8 +31,8 @@ import {
// ...
} from 'element-ui'
Vue.component(Select.name, ElSelect)
Vue.component(Button.name, ElButton)
Vue.component(Select.name, Select)
Vue.component(Button.name, Button)
```
(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/theme-default/button.css';
Vue.component(Select.name, ElSelect)
Vue.component(Button.name, ElButton)
Vue.component(Select.name, Select)
Vue.component(Button.name, Button)
```
## babel-plugin-component
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment