@sandlada/vue-mdc
Version:

34 lines (33 loc) • 556 B
JavaScript
/**
* @license
* Copyright 2025 Sandlada & Kai Orion
* SPDX-License-Identifier: MIT
*/
const NavigationRailPosition = {
Left: "top",
Center: "center",
Right: "bottom"
};
const props = {
defaultActiveOrder: {
type: Number,
default: -2
},
position: {
type: String,
default: NavigationRailPosition.Center
},
tabs: {
type: Array,
default: []
},
hideInactiveLabel: {
type: Boolean,
default: false
}
};
export {
NavigationRailPosition,
props
};
//# sourceMappingURL=navigation-rail.definition.js.map