feat(Popup): add @popup-close-icon-active-color less var

This commit is contained in:
陈嘉涵
2020-02-06 11:04:43 +08:00
parent 265bfeaac7
commit 660b039951
5 changed files with 23 additions and 22 deletions
+5 -5
View File
@@ -48,7 +48,7 @@ export default {
<van-popup
v-model="show"
position="top"
:style="{ height: '20%' }"
:style="{ height: '30%' }"
/>
```
@@ -61,7 +61,7 @@ export default {
v-model="show"
closeable
position="bottom"
:style="{ height: '20%' }"
:style="{ height: '30%' }"
/>
<!-- 自定义图标 -->
<van-popup
@@ -69,7 +69,7 @@ export default {
closeable
close-icon="close"
position="bottom"
:style="{ height: '20%' }"
:style="{ height: '30%' }"
/>
<!-- 图标位置 -->
<van-popup
@@ -77,7 +77,7 @@ export default {
closeable
close-icon-position="top-left"
position="bottom"
:style="{ height: '20%' }"
:style="{ height: '30%' }"
/>
```
@@ -90,7 +90,7 @@ export default {
v-model="show"
round
position="bottom"
:style="{ height: '20%' }"
:style="{ height: '30%' }"
/>
```