export default {
props: {
rgba: {
type: [String, Number],
default: '0.5'
}
},
computed: {
newRgba () {
return this.rgba+ '';
}
},
methods: {
_click () {
this.$emit('click');
}
}
}
.bui-mask{
position: fixed;
left: 0px;
right: 0px;
top: 0px;
bottom: 0px;
background-color:rgba(0,0,0,0.2);
}