UNPKG

@sandlada/vue-mdc

Version:

![Vue MDC Logo](https://raw.githubusercontent.com/sandlada/vue-mdc/refs/heads/main/docs/vue-mdc-cover.png)

34 lines (33 loc) 556 B
/** * @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