Files
game-cards-poker-design/frontend/node_modules/element-plus/es/components/tabs/src/tab-pane.mjs
Poker Design Developer 5dbcebf7a2 Fix frontend blank page issues
- Fix router import path in main.js
- Handle Django REST Framework pagination format in API calls
- Add getTemplates function to project API
- Restart frontend development server
2026-05-31 18:40:56 +08:00

37 lines
875 B
JavaScript

import { buildProps } from "../../../utils/vue/props/runtime.mjs";
//#region ../../packages/components/tabs/src/tab-pane.ts
/**
* @deprecated Removed after 3.0.0, Use `TabPaneProps` instead.
*/
const tabPaneProps = buildProps({
/**
* @description title of the tab
*/
label: {
type: String,
default: ""
},
/**
* @description identifier corresponding to the name of Tabs, representing the alias of the tab-pane, the default is ordinal number of the tab-pane in the sequence, e.g. the first tab-pane is '0'
*/
name: { type: [String, Number] },
/**
* @description whether Tab is closable
*/
closable: {
type: Boolean,
default: void 0
},
/**
* @description whether Tab is disabled
*/
disabled: Boolean,
/**
* @description whether Tab is lazily rendered
*/
lazy: Boolean
});
//#endregion
export { tabPaneProps };
//# sourceMappingURL=tab-pane.mjs.map