mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-09 04:31:35 +08:00
fix(): & & can not work on
This commit is contained in:
parent
dd6a8de66a
commit
a461e77148
@ -1,4 +1,8 @@
|
||||
# CHANGELOG
|
||||
## 1.1.6 (2020-06-01)
|
||||
### Fixes
|
||||
- 修正 `$NConfirm` 的 `show-icon` & `closable` & `bordered` 属性设置无效.
|
||||
|
||||
## 1.1.5 (2020-05-28)
|
||||
### Features
|
||||
- 为 `n-collapse` 和 `n-collapse-item` 增加了 `display-directive` 属性
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "naive-ui",
|
||||
"version": "1.1.5",
|
||||
"version": "1.1.6",
|
||||
"description": "A Vue UI Framework. Caring About Styles, Themed, Batteries Included, Not Rather Slow.",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
|
@ -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