/
githubmirror
/
vuetify
Обзор
Документация
Войти
/
githubmirror
/
vuetify
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/docs/src/components/home/SnipsExample.vue
94 строки
3 KB
J-Sek
feat: migrate to MD3 typography (#22557)
28 янв 2026, 21:50
Не верифицирован
28 янв 2026, 21:50
311daf4
Код
Авторство
О чём код?
<template> <v-container class="pa-md-6" fluid> <v-row> <v-col v-for="(item, i) in items" :key="i" cols="12" md="6" sm="6" > <v-card class="mx-auto" elevation="2" rounded="lg" > <v-img :aspect-ratio="16/7" :src="item.image" class="cursor-pointer ma-2 mb-0 rounded-lg" cover /> <div class="pt-1 pa-3"> <div class="d-flex justify-space-between align-center"> <span class="text-body-large font-weight-bold text-truncate">{{ item.title }}</span> <v-btn color="grey" icon="mdi-heart" size="x-small" variant="text" /> </div> <div class="d-flex align-center ga-1 text-body-small text-medium-emphasis"> <v-icon icon="mdi-calendar-blank-outline" size="small" /> {{ item.createdAt }} </div> </div> </v-card> </v-col> </v-row> </v-container> </template> <script setup> const items = [ { title: 'Misty Mountains', image: 'https://cdn.vuetifyjs.com/docs/images/cards/mountain.jpg', createdAt: '1st Dec 2025', }, { title: 'Lake Reflection', image: 'https://cdn.vuetifyjs.com/docs/images/cards/sky.jpg', createdAt: '2nd Dec 2025', }, { title: 'Forest Sunrise', image: 'https://cdn.vuetifyjs.com/docs/images/cards/forest.jpg', createdAt: '3rd Dec 2025', }, { title: 'Mountain Vista', image: 'https://cdn.vuetifyjs.com/docs/images/cards/desert.jpg', createdAt: '4th Dec 2025', }, { title: 'Lava Dripping', image: 'https://cdn.vuetifyjs.com/docs/images/cards/forest-art.jpg', createdAt: '5th Dec 2025', }, { title: 'Lightning Storm', image: 'https://cdn.vuetifyjs.com/docs/images/cards/hands.jpg', createdAt: '6th Dec 2025', }, { title: 'Rock Monolith', image: 'https://cdn.vuetifyjs.com/docs/images/cards/sunshine.jpg', creator: 'Natalie Smith', avatar: 'https://randomuser.me/api/portraits/women/24.jpg', createdAt: '7th Dec 2025', }, { title: 'Northern Lights', image: 'https://images.unsplash.com/photo-1491466424936-e304919aada7', creator: 'Jason Doe', avatar: 'https://randomuser.me/api/portraits/men/64.jpg', createdAt: '8th Dec 2025', }, ] </script>