From fa04937e033e7221e7e0d8592366fd3a2a30169d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=B0=B1=E7=9C=A0=E4=BB=AA=E5=BC=8F?= <854085467@qq.com>
Date: Tue, 19 Oct 2021 22:36:09 +0800
Subject: [PATCH] =?UTF-8?q?perf(button):=20naiveType=20=E5=B1=9E=E6=80=A7,?=
=?UTF-8?q?=20=E5=8E=9F=E7=94=9F=20type=20=E5=B1=9E=E6=80=A7?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
docs/docs/zh-CN/guide/changelog.md | 1 +
src/module/button/index.vue | 2 ++
2 files changed, 3 insertions(+)
diff --git a/docs/docs/zh-CN/guide/changelog.md b/docs/docs/zh-CN/guide/changelog.md
index edee5760..3b10ac0a 100644
--- a/docs/docs/zh-CN/guide/changelog.md
+++ b/docs/docs/zh-CN/guide/changelog.md
@@ -10,6 +10,7 @@
[修复] tab 选项卡 tab-item 组件套用 for 循环无法获取 props 属性。
[新增] page 分页 prev 插槽。
[新增] page 分页 next 插槽。
+[新增] button 按钮 naiveType 属性, 原生 type 属性, 支持 button, submit 可选值。
[新增] button 按钮 loading 属性, 提供 加载 状态。
diff --git a/src/module/button/index.vue b/src/module/button/index.vue
index 9973dec2..df4ef1c6 100644
--- a/src/module/button/index.vue
+++ b/src/module/button/index.vue
@@ -9,6 +9,7 @@
border ? 'layui-border-' + border : '',
disabled ? 'layui-btn-disabled' : '',
]"
+ :type="nativeType"
>
()