Files
manolia-alpha/node_modules/buetify/lib/components/tabs/shared.js
Robin COuret e0e50af706 init component
2026-02-16 17:28:37 +01:00

26 lines
537 B
JavaScript
Executable File

import { none } from 'fp-ts/lib/Option';
import { shallowRef } from 'vue';
export const TABS_SYMBOL = Symbol('tabs');
export const TAB_ITEM_NAME = 'b-tab-item';
export const BTabItemPropsDefinition = {
label: {
type: String,
required: true
},
icon: {
type: [Function, Object]
},
isDisabled: {
type: Boolean,
default: false
},
isVisible: {
type: Boolean,
default: true
}
};
export const DEFAULT_TAB_INJECTION = {
activeLabel: shallowRef(none),
tabs: []
};
//# sourceMappingURL=shared.js.map