diff --git a/CHANGELOG.zh_CN.md b/CHANGELOG.zh_CN.md
index 8b97662e..42b7bcc7 100644
--- a/CHANGELOG.zh_CN.md
+++ b/CHANGELOG.zh_CN.md
@@ -3,6 +3,7 @@
### ✨ Features
- 新增`pwa`功能,可在`.env.production`开启
+- Button 组件扩展 `preIcon`和`postIcon`属性用于在文本前后添加图标
### 🎫 Chores
@@ -25,6 +26,7 @@
- 修复热更新时多次注册组件警告问题
- 修复登录后出现登录标签页
+- 修复路由切换参数消失问题
## 2.0.0-rc.5 (2020-10-26)
diff --git a/src/components/Button/index.vue b/src/components/Button/index.vue
index b3fa3f73..d16dbf74 100644
--- a/src/components/Button/index.vue
+++ b/src/components/Button/index.vue
@@ -1,7 +1,12 @@
@@ -44,6 +49,12 @@
type: Boolean as PropType,
default: false,
},
+ preIcon: {
+ type: String as PropType,
+ },
+ postIcon: {
+ type: String as PropType,
+ },
},
setup(props, { attrs }) {
const getListeners = computed(() => {
diff --git a/src/views/demo/feat/msg/index.vue b/src/views/demo/feat/msg/index.vue
index 732893c0..90f29fdc 100644
--- a/src/views/demo/feat/msg/index.vue
+++ b/src/views/demo/feat/msg/index.vue
@@ -1,7 +1,7 @@