/
githubmirror
/
vuetify
Обзор
Документация
Войти
/
githubmirror
/
vuetify
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/docs/src/components/api/DirectiveTable.vue
32 строки
825 B
John Leider
chore(package.json): update deps
26 июн 2025, 20:20
26 июн 2025, 20:20
5d81d46
Код
Авторство
О чём код?
<template> <div> <AppMarkup :code="item.formatted" :rounded="false" language="ts" /> <br> <AppMarkdown v-if="localeStore.locale !== 'eo-UY'" :content="item.description" class="mb-0" /> <span v-else>{{ item.description }}</span> <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> </div> </template> <script setup> const props = defineProps({ items: Array, headers: Array, }) const localeStore = useLocaleStore() const user = useUserStore() const item = computed(() => props.items[0]) </script>