mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-09 04:31:35 +08:00
Merge branch 'develop' of ***REMOVED*** into develop
This commit is contained in:
commit
2748d2879b
@ -3,6 +3,7 @@
|
||||
### Fixes
|
||||
- 修正了 `n-data-table` 选框列的选框没有垂直居中的问题
|
||||
- 修正了 `n-data-table` 表头没 border-color transition 的问题
|
||||
- 修正 `$NConfirm` 的 `show-icon` & `closable` & `bordered` 属性设置无效的问题
|
||||
### Features
|
||||
- 增加并调整了一些 `n-config-consumer` 样式方案中的颜色
|
||||
|
||||
|
@ -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: {
|
||||
|
Loading…
Reference in New Issue
Block a user