/
githubmirror
/
vuetify
Обзор
Документация
Войти
/
githubmirror
/
vuetify
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/docs/src/components/doc/ThemeCard.vue
46 строк
983 B
J-Sek
feat: migrate to MD3 typography (#22557)
28 янв 2026, 21:50
Не верифицирован
28 янв 2026, 21:50
311daf4
Код
Авторство
О чём код?
<template> <a :href="product.href" class="text-high-emphasis text-decoration-none" rel="noopener" target="_blank" > <AppFigure :alt="product.title" :name="product.title" :src="product.src" height="230" max-height="230" min-height="230" cover > <figcaption class="d-flex text-title-small align-center justify-center text-capitalize mt-3"> <span v-text="product.title" /> <v-chip v-if="product.price === 0" class="text-uppercase px-1 ms-2" color="primary" size="x-small" text="Free" label /> <span v-else-if="product.price" class="ms-auto text-body-large font-weight-bold" v-text="`$${product.price}`" /> </figcaption> </AppFigure> </a> </template> <script setup> defineProps({ product: { type: Object, default: () => ({}), }, }) </script>