mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed #3802 - Improve folder structure for nuxt configurations
This commit is contained in:
parent
851950270b
commit
f5fe822afb
563 changed files with 1703 additions and 1095 deletions
68
components/lib/card/Card.d.ts
vendored
Executable file
68
components/lib/card/Card.d.ts
vendored
Executable file
|
@ -0,0 +1,68 @@
|
|||
/**
|
||||
*
|
||||
* Card is a flexible container component.
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/card/)
|
||||
*
|
||||
* @module card
|
||||
*
|
||||
*/
|
||||
import { VNode } from 'vue';
|
||||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||
|
||||
/**
|
||||
* Defines valid properties in Card component.
|
||||
*/
|
||||
export interface CardProps {}
|
||||
|
||||
/**
|
||||
* Defines valid slots in Card component.
|
||||
*/
|
||||
export interface CardSlots {
|
||||
/**
|
||||
* Custom header template.
|
||||
*/
|
||||
header(): VNode[];
|
||||
/**
|
||||
* Custom title template.
|
||||
*/
|
||||
title(): VNode[];
|
||||
/**
|
||||
* Custom subtitle template.
|
||||
*/
|
||||
subtitle(): VNode[];
|
||||
/**
|
||||
* Custom content template.
|
||||
*/
|
||||
content(): VNode[];
|
||||
/**
|
||||
* Custom footer template.
|
||||
*/
|
||||
footer(): VNode[];
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid emits in Card component.
|
||||
*/
|
||||
export interface CardEmits {}
|
||||
|
||||
/**
|
||||
* **PrimeVue - Card**
|
||||
*
|
||||
* _Card is a flexible container component._
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/card/)
|
||||
* --- ---
|
||||
* 
|
||||
*
|
||||
* @group Component
|
||||
*/
|
||||
declare class Card extends ClassComponent<CardProps, CardSlots, CardEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
Card: GlobalComponentConstructor<Card>;
|
||||
}
|
||||
}
|
||||
|
||||
export default Card;
|
Loading…
Add table
Add a link
Reference in a new issue