canyin-project/yb_wm/components/drag/blank.vue

36 lines
459 B
Vue
Raw Normal View History

2024-11-01 16:07:54 +08:00
<template>
<view :style="{height:`${co.height}${u}`,background:co.colorBg}"></view>
</template>
<script>
import {
mapState,
mapActions
} from 'vuex'
export default {
name: 'blank',
props: {
co: {
type: Object,
default: function() {
return {}
}
},
u: {
type: String,
default: 'px'
},
},
data() {
return {
}
},
methods: {},
async created() {},
}
</script>
<style scoped lang="scss">
</style>