Skip to content

Commit bf87f2e

Browse files
'deploy'
1 parent 91dff21 commit bf87f2e

File tree

9 files changed

+35
-33
lines changed

9 files changed

+35
-33
lines changed

dist/components/vsCard/main.styl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
transform: translate(0,40%)
3030
margin-top: -5%
3131
padding-top: 0px
32-
overflow hidden
32+
// overflow hidden
3333
&.fixedHeight
3434
position: absolute
3535
bottom: 0

dist/components/vsIcon/vsIcon.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
:style="iconStyle"
44
:class="[iconPack, iconPack !='material-icons' ? icon : '',iconClass,getBg,getBgSize,{'round':round}]"
55
class="vs-icon notranslate icon-scale">
6-
<slot>{{iconPack == 'material-icons' ? icon : ''}}</slot>
6+
<slot>{{ iconPack == 'material-icons' ? icon : '' }}</slot>
77
</i>
88
</template>
99
<script>
@@ -36,6 +36,7 @@ export default {
3636
default: false,
3737
type: Boolean
3838
},
39+
3940
},
4041
computed:{
4142
iconClass() {

dist/components/vsPopup/vsPopup.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export default {
128128
if(event.target.className.indexOf('vs-popup--background')!=-1){
129129
this.$emit('update:active',false)
130130
this.$emit('close', false)
131-
} else if(event.toElement == this.$refs.btnclose.$el){
131+
} else if(event.srcElement == this.$refs.btnclose.$el){
132132
this.$emit('update:active',false)
133133
this.$emit('close', false)
134134
}

dist/vuesax.common.js

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vuesax.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vuesax.umd.js

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vuesax.umd.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/vsIcon/vsIcon.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
:style="iconStyle"
44
:class="[iconPack, iconPack !='material-icons' ? icon : '',iconClass,getBg,getBgSize,{'round':round}]"
55
class="vs-icon notranslate icon-scale">
6-
<slot>{{iconPack == 'material-icons' ? icon : ''}}</slot>
6+
<slot>{{ iconPack == 'material-icons' ? icon : '' }}</slot>
77
</i>
88
</template>
99
<script>
@@ -36,6 +36,7 @@ export default {
3636
default: false,
3737
type: Boolean
3838
},
39+
3940
},
4041
computed:{
4142
iconClass() {

src/components/vsPopup/vsPopup.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export default {
128128
if(event.target.className.indexOf('vs-popup--background')!=-1){
129129
this.$emit('update:active',false)
130130
this.$emit('close', false)
131-
} else if(event.toElement == this.$refs.btnclose.$el){
131+
} else if(event.srcElement == this.$refs.btnclose.$el){
132132
this.$emit('update:active',false)
133133
this.$emit('close', false)
134134
}

0 commit comments

Comments
 (0)