@bsgoal/common 2.5.2 → 2.5.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bsgoal/common",
3
- "version": "2.5.2",
3
+ "version": "2.5.4",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",
@@ -2,7 +2,7 @@
2
2
  * @Author: canlong.shen
3
3
  * @Date: 2023-05-18 16:24:25
4
4
  * @LastEditors: canlong.shen
5
- * @LastEditTime: 2023-05-23 16:58:12
5
+ * @LastEditTime: 2023-05-25 09:26:22
6
6
  * @FilePath: \common\src\components\bsgoal-base-button\index.vue
7
7
  * @Description: 统一按钮
8
8
  *
@@ -33,7 +33,7 @@ const props = defineProps({
33
33
  },
34
34
  content: {
35
35
  type: [String],
36
- default: '新增'
36
+ default: ''
37
37
  },
38
38
  mode: {
39
39
  type: [String],
@@ -102,6 +102,8 @@ const contentGet = computed(() => {
102
102
  return '确认'
103
103
  case 'add':
104
104
  return '新增'
105
+ case 'delete':
106
+ return '删除'
105
107
  }
106
108
  return content
107
109
  })