houzhongjian
2024-08-08 820397e43a0b64d35c6d31d2a55475061438593b
提交 | 用户 | 时间
820397 1 <script lang="ts" setup>
H 2 import { propTypes } from '@/utils/propTypes'
3 import { PropType } from 'vue'
4
5 defineOptions({ name: 'XTextButton' })
6
7 const props = defineProps({
8   modelValue: propTypes.bool.def(false),
9   loading: propTypes.bool.def(false),
10   preIcon: propTypes.string.def(''),
11   postIcon: propTypes.string.def(''),
12   title: propTypes.string.def(''),
13   type: propTypes.oneOf(['', 'primary', 'success', 'warning', 'danger', 'info']).def('primary'),
14   circle: propTypes.bool.def(false),
15   round: propTypes.bool.def(false),
16   plain: propTypes.bool.def(false),
17   onClick: { type: Function as PropType<(...args) => any>, default: null }
18 })
19 const getBindValue = computed(() => {
20   const delArr: string[] = ['title', 'preIcon', 'postIcon', 'onClick']
21   const attrs = useAttrs()
22   const obj = { ...attrs, ...props }
23   for (const key in obj) {
24     if (delArr.indexOf(key) !== -1) {
25       delete obj[key]
26     }
27   }
28   return obj
29 })
30 </script>
31
32 <template>
33   <el-button link v-bind="getBindValue" @click="onClick">
34     <Icon v-if="preIcon" :icon="preIcon" class="mr-1px" />
35     {{ title ? title : '' }}
36     <Icon v-if="postIcon" :icon="postIcon" class="mr-1px" />
37   </el-button>
38 </template>
39 <style lang="scss" scoped>
40 :deep(.el-button.is-text) {
41   padding: 8px 4px;
42   margin-left: 0;
43 }
44
45 :deep(.el-button.is-link) {
46   padding: 8px 4px;
47   margin-left: 0;
48 }
49 </style>