Files
im-system/l-im-app-imooc-master/l-im-app-imooc/components/ui/divider.vue
2023-09-07 00:56:03 +08:00

27 lines
309 B
Vue

<template>
<view :style="getStyle"></view>
</template>
<script>
export default {
props: {
color:{
type:String,
default:"#EFEDE9"
}
},
computed: {
getStyle(){
return `height: 18rpx;background-color: ${this.color}rpx`
}
},
methods: {
},
}
</script>
<style>
</style>