1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
| <script setup lang="ts">
| import { useDesign } from '@/hooks/web/useDesign'
| import { ElButton, ComponentSize, ButtonType } from 'element-plus'
| import { PropType, Component, computed, unref } from 'vue'
| import { useAppStore } from '@/store/modules/app'
|
| const appStore = useAppStore()
|
| const getTheme = computed(() => appStore.getTheme)
|
| const { getPrefixCls } = useDesign()
|
| const prefixCls = getPrefixCls('button')
|
| const props = defineProps({
| size: {
| type: String as PropType<ComponentSize>,
| default: undefined
| },
| type: {
| type: String as PropType<ButtonType>,
| default: 'default'
| },
| disabled: {
| type: Boolean,
| default: false
| },
| plain: {
| type: Boolean,
| default: false
| },
| text: {
| type: Boolean,
| default: false
| },
| bg: {
| type: Boolean,
| default: false
| },
| link: {
| type: Boolean,
| default: false
| },
| round: {
| type: Boolean,
| default: false
| },
| circle: {
| type: Boolean,
| default: false
| },
| loading: {
| type: Boolean,
| default: false
| },
| loadingIcon: {
| type: [String, Object] as PropType<string | Component>,
| default: undefined
| },
| icon: {
| type: [String, Object] as PropType<string | Component>,
| default: undefined
| },
| autofocus: {
| type: Boolean,
| default: false
| },
| nativeType: {
| type: String as PropType<'button' | 'submit' | 'reset'>,
| default: 'button'
| },
| autoInsertSpace: {
| type: Boolean,
| default: false
| },
| color: {
| type: String,
| default: ''
| },
| darker: {
| type: Boolean,
| default: false
| },
| tag: {
| type: [String, Object] as PropType<string | Component>,
| default: 'button'
| }
| })
|
| const emits = defineEmits(['click'])
|
| const color = computed(() => {
| const { type, link } = props
| if (type === 'primary' && !link) {
| return unref(getTheme).elColorPrimary
| }
| return ''
| })
|
| const style = computed(() => {
| const { type, link } = props
| if (type === 'primary' && !link) {
| return '--el-button-text-color: #fff; --el-button-hover-text-color: #fff'
| }
| return ''
| })
| </script>
|
| <template>
| <ElButton
| :class="`${prefixCls} color-#fff`"
| v-bind="{ ...props }"
| :color="color"
| :style="style"
| @click="() => emits('click')"
| >
| <slot></slot>
| <slot name="icon"></slot>
| <slot name="loading"></slot>
| </ElButton>
| </template>
|
|