/
githubmirror
/
vuetify
Обзор
Документация
Войти
/
githubmirror
/
vuetify
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/docs/src/components/api/ApiTable.vue
95 строк
3 KB
J-Sek
feat: migrate to MD3 typography (#22557)
28 янв 2026, 21:50
Не верифицирован
28 янв 2026, 21:50
311daf4
Код
Авторство
О чём код?
<template> <AppSheet> <v-table class="api-table" density="comfortable"> <thead> <tr> <th v-for="header in headers" :key="header" :class="header" > <div class="text-capitalize" v-text="header" /> </th> </tr> </thead> <tbody> <template v-for="item in filtered" :key="item.name"> <slot name="row" v-bind="{ props: { style: 'background: rgba(0,0,0,.1)' }, item, }" /> <tr v-if="item.description || (user.one.devmode && item.source)"> <td class="text-mono pt-4" colspan="3"> <template v-if="item.description"> <AppMarkdown v-if="localeStore.locale !== 'eo-UY'" :content="item.description" class="mb-0" /> <span v-else>{{ item.description }}</span> </template> <p v-if="user.one.devmode && item.source"> <strong>source: {{ item.source }}</strong> <template v-if="user.one.devmode && item.descriptionSource && item.source !== item.descriptionSource"> <br> <strong>description source: {{ item.descriptionSource }}</strong> </template> </p> </td> </tr> </template> <tr v-if="!filtered.length"> <td class="text-center text-disabled text-body-medium" colspan="4"> {{ t('search.no-results') }} </td> </tr> </tbody> </v-table> </AppSheet> </template> <script setup lang="ts"> // Types import type { PropType } from 'vue' const props = defineProps({ headers: { type: Array as PropType<string[]>, default: () => ([]), }, items: { type: Array as PropType<any[]>, default: () => [], }, }) const { t } = useI18n() const appStore = useAppStore() const localeStore = useLocaleStore() const user = useUserStore() const filtered = computed(() => { const items = props.items.filter((item: any) => { return user.one.devmode || item.description !== '**FOR INTERNAL USE ONLY**' }) if (!appStore.apiSearch) return items const query = camelCase(appStore.apiSearch).toLowerCase() return items.filter((item: any) => { return item.name.toLowerCase().includes(query) }) }) </script>