navigation-drawer.go 686 B

1234567891011121314151617181920
  1. package advanced_functions
  2. import (
  3. "github.com/qor5/docs/docsrc/examples/e15_vuetify_navigation_drawer"
  4. "github.com/qor5/docs/docsrc/generated"
  5. "github.com/qor5/docs/docsrc/utils"
  6. . "github.com/theplant/docgo"
  7. "github.com/theplant/docgo/ch"
  8. )
  9. var NavigationDrawer = Doc(
  10. Markdown(`
  11. Vuetify navigation drawer provide a popup layer that show on the side of the window.
  12. Here is one example:
  13. `),
  14. ch.Code(generated.VuetifyNavigationDrawerSample).Language("go"),
  15. utils.Demo("Vuetify Navigation Drawer", e15_vuetify_navigation_drawer.VuetifyNavigationDrawerPath, "e15_vuetify_navigation_drawer/page.go"),
  16. ).Title("Navigation Drawer").
  17. Slug("vuetify-components/navigation-drawer")