Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@ docClass: timeline
---


## 🌈 1.14.3 `2025-12-23`
### 🚀 Features
- `ImageViewer`:
- 优化下载跨域图片时的格式处理和压缩比例 @RylanBot ([common#2311](https://github.com/Tencent/tdesign-common/pull/2311))
- 支持直接下载同域图片,避免二次转换导致体积增大和动图失效等问题 @RylanBot ([common#2311](https://github.com/Tencent/tdesign-common/pull/2311))
- `Popup`: 新增 `onOverlayClick` 事件,支持内容面板点击时触发 @RSS1102 ([#3752](https://github.com/Tencent/tdesign-vue/pull/3752))
### 🐞 Bug Fixes
- `Avatar`: 修复样式与设计稿不一致的问题 @liweijie0812 ([common#2364](https://github.com/Tencent/tdesign-common/pull/2364))
- `Menu`: 修复菜单选项默认边距和图标大小的问题 @liweijie0812 ([common#2369](https://github.com/Tencent/tdesign-common/pull/2369))
- `Table`: 修复行选中收缩后,表格头全选状态异常的问题 @liweijie0812 ([#3771](https://github.com/Tencent/tdesign-vue/pull/3771))
- `Upload`: 修复不支持文件数组上传的问题 @GATING ([common#2078](https://github.com/Tencent/tdesign-common/pull/2078))
- `Upload`: 修复 `theme` 为 `image-flow` 的告警问题 @uyarn ([#3782](https://github.com/Tencent/tdesign-vue/pull/3782))


## 🌈 1.14.2 `2025-11-07`
### 🚀 Features
- `Watermark`: 新增 `layout` API,支持生成不同布局的水印 @Wesley-0808 ([#3726](https://github.com/Tencent/tdesign-vue/pull/3726))
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tdesign-vue",
"purename": "tdesign",
"version": "1.14.2",
"version": "1.14.3",
"description": "tdesign-vue",
"title": "tdesign-vue",
"keywords": [
Expand Down Expand Up @@ -160,7 +160,7 @@
"husky": "^7.0.4",
"hyphenate": "^0.2.4",
"jsdom": "^26.0.0",
"less": "^4.1.2",
"less": "4.4.2",
"lint-staged": "^13.2.2",
"mockdate": "^3.0.2",
"msw": "^1.0.0",
Expand Down
12 changes: 8 additions & 4 deletions site/docs/getting-started.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
---
title: Vue for Web
description: TDesign 适配桌面端的组件库,适合在 vue 2 技术栈项目中使用。
description: TDesign 适配桌面端的组件库,适合在 Vue 2 技术栈项目中使用。
spline: explain
---

<div style="background: var(--td-warning-color-2); padding: 14px 24px; border-radius: 3px; color: #555a65; line-height: 22px">
<div style="background: var(--td-warning-color-disabled); padding: 14px 24px; border-radius: 3px; color: var(--text-primary); line-height: 22px">
<p>⚠️ 由于 <a href='https://v2.vuejs.org/eol' _blank>Vue 2 已经宣布 EOL </a>,且大量业务已经迁移 TDesign Vue 3 使用,我们将减少 TDesign Vue 2 版本的维护频率,并重点持续维护 TDesign Vue 3 版本。建议迁移 Vue 3 并升级到<a href='https://tdesign.tencent.com/vue-next/' _blank> TDesign Vue 3 版本 </a> 使用,具有 TDesign Vue 2 相同的 API 的同时,提供更完善的功能和维护</p>
</div>

<br />
<div style="background: var(--td-warning-color-disabled); padding: 14px 24px; border-radius: 3px; color: var(--text-primary); line-height: 22px">
<p>tdesign-vue 在 1.4.0 版本之后开始同步支持在 Vue 2.7 中使用</p>
<p>如果您需要在 Vue2.7 中使用 tdesign-vue 请安装 tdesign-vue@naruto 或在具体指定版本后加-naruto的标识
<p>如tdesign-vue@1.4.0 适用于 Vue 2.6 tdesign-vue@1.4.0-naruto 适用于 Vue 2.7</p>
<p>如果您需要在 Vue 2.7 中使用 tdesign-vue 请安装 tdesign-vue@naruto 或在具体指定版本后加-naruto的标识</p>
</div>

## 安装
Expand Down
Loading