mirror of
https://github.com/ElemeFE/element.git
synced 2025-12-13 11:34:02 +08:00
Changelog: update for 1.4.12
This commit is contained in:
@@ -1,5 +1,11 @@
|
||||
## Changelog
|
||||
|
||||
### 1.4.12
|
||||
|
||||
*2017-11-30*
|
||||
|
||||
- Fixed input height error of Select when `size` is not assigned, #8460
|
||||
|
||||
### 1.4.11
|
||||
|
||||
*2017-11-24*
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
## 更新日志
|
||||
|
||||
### 1.4.12
|
||||
*2017-11-30*
|
||||
|
||||
- 修复未指定 `size` 的 Select 输入框高度错误,#8460
|
||||
|
||||
### 1.4.11
|
||||
*2017-11-24*
|
||||
|
||||
|
||||
@@ -199,6 +199,15 @@
|
||||
this.localize();
|
||||
this.renderAnchorHref();
|
||||
this.goAnchor();
|
||||
setTimeout(() => {
|
||||
const title = this.lang === 'zh-CN' ? '提示' : 'Notice';
|
||||
const message = this.lang === 'zh-CN' ? 'Element 1.x 已停止维护,请升级至 2.x' : 'Element 1.x is no longer maintained. Please upgrade to 2.x';
|
||||
this.$notify({
|
||||
title,
|
||||
message,
|
||||
duration: 0
|
||||
});
|
||||
}, 3000);
|
||||
},
|
||||
|
||||
created() {
|
||||
|
||||
Reference in New Issue
Block a user