| 12345678910111213141516171819202122 |
- <template>
- <view :style="{height:height,'background-color':bgcolor}"></view>
- </template>
- <script>
- export default{
- name:'z-divider',
- props:{
- height:{
- type:String,
- default:'20rpx'
- },
- bgcolor:{
- type:String,
- default:'#F8F9FF'
- }
- }
- }
- </script>
- <style>
- </style>
|