/
githubmirror
/
vuetify
Обзор
Документация
Войти
/
githubmirror
/
vuetify
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/docs/src/components/app/bar/SupportMenu.vue
85 строк
2 KB
John Leider
docs(AppBar): update menu and toggle content
10 дек 2025, 00:08
10 дек 2025, 00:08
85192e8
Код
Авторство
О чём код?
<template> <AppBtn color="medium-emphasis" > {{ title }} <IconsChevronDown /> <AppMenuMenu :items="items" activator="parent" width="220" /> </AppBtn> </template> <script setup> const { t } = useI18n() const title = t('support') const items = computed(() => ([ { subheader: t('help-and-support') }, { title: 'for-enterprise', to: rpath('/introduction/enterprise-support/'), appendIcon: 'mdi-shield-star-outline', }, { title: 'file-a-bug-report', href: 'https://issues.vuetifyjs.com/', appendIcon: '$vuetify-issues', }, { title: 'faq', to: rpath('/getting-started/frequently-asked-questions/'), appendIcon: 'mdi-head-question-outline', }, { title: 'upgrade-guide', to: rpath('/getting-started/upgrade-guide/'), appendIcon: 'mdi-update', }, { title: 'github-discussions', href: 'https://github.com/vuetifyjs/vuetify/discussions', appendIcon: 'mdi-message-text-outline', }, { title: 'stack-overflow', href: 'https://stackoverflow.com/search?q=vuetify', appendIcon: 'mdi-layers-outline', }, { divider: true }, { subheader: t('resources') }, { title: 'awesome', href: 'https://github.com/vuetifyjs/awesome-vuetify', appendIcon: 'mdi-creation-outline', }, { title: 'brand-kit', to: rpath('/resources/brand-kit/'), appendIcon: 'mdi-image-outline', }, { title: 'jobs', to: rpath('/resources/jobs-for-vue/'), appendIcon: 'mdi-briefcase-variant-outline', }, { title: 'github-issues', href: 'https://github.com/vuetifyjs/vuetify/issues/', appendIcon: 'mdi-alert-circle-outline', }, { title: 'documentation-status', href: 'https://status.vuetifyjs.com/', appendIcon: 'mdi-cloud-outline', }, { title: 'latest-releases', href: 'https://github.com/vuetifyjs/vuetify/releases', appendIcon: 'mdi-package-variant', }, ])) </script>