/
githubmirror
/
vuetify
Обзор
Документация
Войти
/
githubmirror
/
vuetify
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/docs/src/components/app/bar/LearnMenu.vue
98 строк
2 KB
John Leider
docs: fix learn menu version icons and update 3.x label
25 фев 2026, 20:35
25 фев 2026, 20:35
2ab8f19
Код
Авторство
О чём код?
<template> <AppBtn> {{ title }} <IconsChevronDown /> <AppMenuMenu :items="items" activator="parent" width="200" /> </AppBtn> </template> <script setup lang="ts"> const { t } = useI18n() const title = t('learn') const items = computed(() => ([ { subheader: t('overview') }, { title: t('api-explorer'), to: rpath('/components/explorer/'), appendIcon: 'mdi-code-json', }, { title: t('colors'), to: rpath('/styles/colors/#material-colors'), appendIcon: 'mdi-palette-swatch-outline', }, { title: t('components'), to: rpath('/components/all/'), appendIcon: 'mdi-view-dashboard-outline', }, { title: t('feature-guides'), to: rpath('/introduction/why-vuetify/#feature-guides'), appendIcon: 'mdi-lightbulb-on-outline', }, { title: t('icons'), to: rpath('/features/icon-fonts/#mdi-icon-search'), appendIcon: 'mdi-emoticon-outline', }, { title: t('labs'), to: rpath('/labs/introduction/'), appendIcon: 'mdi-beaker-outline', }, { title: t('licensing'), to: rpath('/about/licensing/'), appendIcon: 'mdi-file-document-outline', }, { title: t('roadmap'), to: rpath('/introduction/roadmap/'), appendIcon: 'mdi-compass-outline', }, { title: t('sass-variables'), to: rpath('/features/sass-variables/#variable-api'), appendIcon: 'mdi-sass', }, { title: t('unit-testing'), to: rpath('/getting-started/unit-testing/'), appendIcon: 'mdi-list-status', }, { divider: true }, { subheader: t('documentation') }, { title: 'Vuetify0', href: 'https://0.vuetifyjs.com/', appendIcon: 'mdi-numeric-0-box', }, { title: '4.x (latest)', href: 'https://vuetifyjs.com/', appendIcon: 'mdi-numeric-4-box', }, { title: '3.x (stable)', href: 'https://v3.vuetifyjs.com/', appendIcon: 'mdi-numeric-3-box', }, { title: '2.6.x (v2-stable)', href: 'https://v2.vuetifyjs.com/', appendIcon: 'mdi-numeric-2-box', }, { title: '1.5.x (v1-stable)', href: 'https://v15.vuetifyjs.com/', appendIcon: 'mdi-numeric-1-box', }, ])) </script>