Merge pull request #6239 from Creo-KR/master
Make that "as" of Button Props can be assigned Component Objectpull/6161/head^2
commit
cb883bf8a8
|
@ -43,7 +43,7 @@ export default {
|
|||
default: undefined
|
||||
},
|
||||
as: {
|
||||
type: String,
|
||||
type: [String, Object],
|
||||
default: 'BUTTON'
|
||||
},
|
||||
asChild: {
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
import type { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, HintedString, PassThrough } from '@primevue/core';
|
||||
import type { ComponentHooks } from '@primevue/core/basecomponent';
|
||||
import type { PassThroughOptions } from 'primevue/passthrough';
|
||||
import { ButtonHTMLAttributes, VNode } from 'vue';
|
||||
import { ButtonHTMLAttributes, Component, VNode } from 'vue';
|
||||
|
||||
export declare type ButtonPassThroughOptionType<T = any> = ButtonPassThroughAttributes | ((options: ButtonPassThroughMethodOptions<T>) => ButtonPassThroughAttributes | string) | string | null | undefined;
|
||||
|
||||
|
@ -133,7 +133,7 @@ export interface ButtonProps extends ButtonHTMLAttributes {
|
|||
* Use to change the HTML tag of root element.
|
||||
* @defaultValue BUTTON
|
||||
*/
|
||||
as?: string | undefined;
|
||||
as?: string | Component | undefined;
|
||||
/**
|
||||
* When enabled, it changes the default rendered element for the one passed as a child element.
|
||||
* @defaultValue false
|
||||
|
|
Loading…
Reference in New Issue