// src/components/MyComponent.vue <template> <slot v-if="isSlotType(act)" :name="act.slot" /> <e-button v-else v-bind="act" /> </template> import { defineComponent } from "vue"; interface MyButton { // MyButton 接口定义 } export default defineComponent({ props: { actions:...