Commit 4a5d5cc9f2e2b4acd47a77adfeb162e4ebb7c11b
1 parent
ded95b46
更新几个标签名称
更新几个标签名称
Showing
3 changed files
with
7 additions
and
6 deletions
Show diff stats
examples/routers/select.vue
... | ... | @@ -195,14 +195,14 @@ |
195 | 195 | <div> |
196 | 196 | <Row> |
197 | 197 | <i-col span="12" style="padding-right:10px"> |
198 | - <i-select v-model="model11" filterable> | |
198 | + <Select v-model="model11" filterable> | |
199 | 199 | <i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option> |
200 | - </i-select> | |
200 | + </Select> | |
201 | 201 | </i-col> |
202 | 202 | <i-col span="12"> |
203 | - <i-select v-model="model12" filterable multiple> | |
203 | + <Select v-model="model12" filterable multiple> | |
204 | 204 | <i-option v-for="item in cityList" :value="item.value">{{ item.label }}</i-option> |
205 | - </i-select> | |
205 | + </Select> | |
206 | 206 | </i-col> |
207 | 207 | </Row> |
208 | 208 | <div @click="model11 = 'shanghai'">change</div> | ... | ... |
package.json
src/index.js
... | ... | @@ -95,13 +95,14 @@ const iview = { |
95 | 95 | RadioGroup: Radio.Group, |
96 | 96 | Rate, |
97 | 97 | Row, |
98 | + Select, | |
98 | 99 | iSelect: Select, |
99 | 100 | Slider, |
100 | 101 | Spin, |
101 | 102 | Step: Steps.Step, |
102 | 103 | Steps, |
103 | 104 | iSwitch: Switch, |
104 | - // iTable: Table, | |
105 | + iTable: Table, | |
105 | 106 | Table, |
106 | 107 | Tabs: Tabs, |
107 | 108 | TabPane: Tabs.Pane, | ... | ... |