Merge branch 'develop' of ***REMOVED*** into develop

This commit is contained in:
07akioni 2020-06-01 19:13:51 +08:00
commit 2748d2879b
2 changed files with 8 additions and 1 deletions

View File

@ -3,6 +3,7 @@
### Fixes
- 修正了 `n-data-table` 选框列的选框没有垂直居中的问题
- 修正了 `n-data-table` 表头没 border-color transition 的问题
- 修正 `$NConfirm` 的 `show-icon` & `closable` & `bordered` 属性设置无效的问题
### Features
- 增加并调整了一些 `n-config-consumer` 样式方案中的颜色

View File

@ -14,6 +14,9 @@
:negative-text="negativeText"
:title="title"
:loading="loading"
:closable="closable"
:show-icon="showIcon"
:bordered="bordered"
theme-context-activated
@close="handleCloseClick"
@negative-click="handleNegativeClick"
@ -49,7 +52,10 @@ export default {
onPositiveClick: () => true,
onNegativeClick: () => true,
onClose: () => true,
instances: null
instances: null,
closable: true,
showIcon: true,
bordered: false
}
},
computed: {