Commit 9891a91a authored by rockyl's avatar rockyl

修改滚动方向为枚举

parent 55826096
...@@ -248,13 +248,14 @@ export default { ...@@ -248,13 +248,14 @@ export default {
}, },
scrollView: { scrollView: {
groupName: '滚动视图', groupName: '滚动视图',
isVertical: { direction: {
title: '纵向锁定', title: '滚动方向',
type: 'switch', type: 'select',
props: { options: [
width: 40 { label: '纵向', value: 'vertical' },
}, { label: '横向', value: 'horizontal' }
value: true, ],
value: 'vertical',
}, },
isSpringBack: { isSpringBack: {
title: '回弹效果', title: '回弹效果',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment