init component

This commit is contained in:
Robin COuret
2026-02-16 17:28:37 +01:00
parent 460c7a25e0
commit e0e50af706
4557 changed files with 666911 additions and 8 deletions

26
node_modules/buetify/lib/components/tabs/shared.js generated vendored Executable file
View File

@@ -0,0 +1,26 @@
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