parent
8e8073d17e
commit
9a45b35511
|
@ -10,6 +10,10 @@
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## 4.2.1
|
||||||
|
|
||||||
|
- 🐞 fix Input clear action error [#7523](https://github.com/vueComponent/ant-design-vue/issues/7523)
|
||||||
|
|
||||||
## 4.2.0
|
## 4.2.0
|
||||||
|
|
||||||
- 🌟 Optimize the textColor change when the layout component switches to dark mode [#7498](https://github.com/vueComponent/ant-design-vue/issues/7498)
|
- 🌟 Optimize the textColor change when the layout component switches to dark mode [#7498](https://github.com/vueComponent/ant-design-vue/issues/7498)
|
||||||
|
|
|
@ -10,6 +10,10 @@
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## 4.2.1
|
||||||
|
|
||||||
|
- 🐞 修复 Input 清空操作才报错问题 [#7523](https://github.com/vueComponent/ant-design-vue/issues/7523)
|
||||||
|
|
||||||
## 4.2.0
|
## 4.2.0
|
||||||
|
|
||||||
- 🌟 优化 layout 组件切换 dark 模式时 textColor 变化 [#7498](https://github.com/vueComponent/ant-design-vue/issues/7498)
|
- 🌟 优化 layout 组件切换 dark 模式时 textColor 变化 [#7498](https://github.com/vueComponent/ant-design-vue/issues/7498)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "ant-design-vue",
|
"name": "ant-design-vue",
|
||||||
"version": "4.2.0",
|
"version": "4.2.1",
|
||||||
"title": "Ant Design Vue",
|
"title": "Ant Design Vue",
|
||||||
"description": "An enterprise-class UI design language and Vue-based implementation",
|
"description": "An enterprise-class UI design language and Vue-based implementation",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|
|
@ -9,7 +9,10 @@ import vueJsx from '@vitejs/plugin-vue-jsx';
|
||||||
export default {
|
export default {
|
||||||
resolve: {
|
resolve: {
|
||||||
alias: {
|
alias: {
|
||||||
vue: 'vue/dist/vue.esm-bundler.js',
|
vue:
|
||||||
|
process.env.NODE_ENV === 'production'
|
||||||
|
? 'vue/dist/vue.runtime.esm-browser.prod.js'
|
||||||
|
: 'vue/dist/vue.esm-bundler.js',
|
||||||
'ant-design-vue/es': path.resolve(__dirname, '../components'),
|
'ant-design-vue/es': path.resolve(__dirname, '../components'),
|
||||||
'ant-design-vue': path.resolve(__dirname, '../components'),
|
'ant-design-vue': path.resolve(__dirname, '../components'),
|
||||||
'@': path.resolve(__dirname, './src'),
|
'@': path.resolve(__dirname, './src'),
|
||||||
|
|
Loading…
Reference in New Issue