[bugfix] Actionsheet: border display error (#686)

This commit is contained in:
neverland
2018-03-13 22:45:20 +08:00
committed by GitHub
parent d8d1aa6e82
commit 31be42bc8c
5 changed files with 21 additions and 8 deletions

View File

@@ -27,14 +27,16 @@ export default {
button2: '弹出带取消按钮的 Actionsheet',
button3: '弹出带标题的 Actionsheet',
title2: '带取消按钮的 Actionsheet',
title3: '带标题的 Actionsheet'
title3: '带标题的 Actionsheet',
description: '描述信息'
},
'en-US': {
button1: 'Show Actionsheet',
button2: 'Show Actionsheet with cancel button',
button3: 'Show Actionsheet with title',
title2: 'Actionsheet with cancel button',
title3: 'Actionsheet with title'
title3: 'Actionsheet with title',
description: 'Description'
}
},
@@ -50,7 +52,7 @@ export default {
actions() {
return [
{ name: this.$t('option'), callback: this.onClick },
{ name: this.$t('option') },
{ name: this.$t('option'), subname: this.$t('description') },
{ name: this.$t('option'), loading: true }
];
}