-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1603 from rundeck/version-picker
Adds a Version Selector to Navbar
- Loading branch information
Showing
7 changed files
with
306 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<template> | ||
<Navbar> | ||
<template #endBefore> | ||
<div class="vp-nav-links"> | ||
<NavbarDropdown :config="links"></NavbarDropdown> | ||
</div> | ||
</template> | ||
</Navbar> | ||
|
||
</template> | ||
|
||
<script setup lang="ts"> | ||
import Navbar from "vuepress-theme-hope/modules/navbar/components/Navbar.js"; | ||
import NavbarDropdown from "vuepress-theme-hope/modules/navbar/components/NavbarDropdown.js"; | ||
import previousVersions from '../navbar-menus/previous-versions' | ||
const links = { text: "Archive", children: previousVersions} | ||
</script> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.