mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-28 06:49:24 +08:00
feat: the Button component extends the and attributes
This commit is contained in:
@@ -1,7 +1,12 @@
|
||||
<template>
|
||||
<Button v-bind="getBindValue" :class="[getColor, $attrs.class]">
|
||||
<template #[item]="data" v-for="item in Object.keys($slots)">
|
||||
<!-- <template #[item]="data" v-for="item in Object.keys($slots)">
|
||||
<slot :name="item" v-bind="data" />
|
||||
</template> -->
|
||||
<template #default="data">
|
||||
<g-icon :icon="preIcon" class="mr-1" v-if="preIcon" />
|
||||
<slot v-bind="data" />
|
||||
<g-icon :icon="preIcon" class="ml-1" v-if="postIcon" />
|
||||
</template>
|
||||
</Button>
|
||||
</template>
|
||||
@@ -44,6 +49,12 @@
|
||||
type: Boolean as PropType<boolean>,
|
||||
default: false,
|
||||
},
|
||||
preIcon: {
|
||||
type: String as PropType<string>,
|
||||
},
|
||||
postIcon: {
|
||||
type: String as PropType<string>,
|
||||
},
|
||||
},
|
||||
setup(props, { attrs }) {
|
||||
const getListeners = computed(() => {
|
||||
|
Reference in New Issue
Block a user