/
githubmirror
/
vuetify
Обзор
Документация
Войти
/
githubmirror
/
vuetify
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/docs/src/components/features/BreakpointsTable.vue
119 строк
3 KB
J-Sek
docs(upgrade-guide): describe changes to breakpoints
26 дек 2025, 00:58
26 дек 2025, 00:58
f611768
Код
Авторство
О чём код?
<template> <AppTable> <AppCaption class="pa-4">{{ t('breakpoints-table.caption') }}</AppCaption> <thead> <tr class="text-start"> <th v-for="header in headers" :key="header">{{ t(header) }}</th> </tr> </thead> <tbody> <tr v-for="breakpoint in breakpoints" :key="breakpoint.device" > <td> <v-icon :icon="breakpoint.icon" color="medium-emphasis" start /> <span>{{ t(breakpoint.device) }}</span> </td> <td> <strong v-text="breakpoint.code" /> </td> <td>{{ t(breakpoint.type) }}</td> <td>{{ breakpoint.range }}</td> </tr> </tbody> <tfoot> <tr> <td class="text-end text-medium-emphasis" colspan="4" > <small class="d-block me-n1 mb-n1"> <a class="text-decoration-none d-inline-flex align-center" href="https://m3.material.io/foundations/layout/applying-layout/window-size-classes" rel="noopener noreferrer" target="_blank" > <v-icon class="me-1" icon="mdi-material-design" size="small" style="color: inherit;" /> {{ t('breakpoints-table.spec') }} </a> </small> </td> </tr> </tfoot> </AppTable> </template> <script setup> const breakpoints = [ { icon: 'mdi-cellphone', device: 'extra-small', code: 'xs', type: 'breakpoints-table.small-to-large-handset', range: '< 600px', }, { icon: 'mdi-tablet', device: 'small', code: 'sm', type: 'breakpoints-table.small-to-medium-tablet', range: '600px > < 840px', }, { icon: 'mdi-laptop', device: 'medium', code: 'md', type: 'breakpoints-table.large-tablet-to-laptop', range: '840px > < 1145px', }, { icon: 'mdi-monitor-small', device: 'large', code: 'lg', type: 'breakpoints-table.desktop', range: '1145px > < 1545px', }, { icon: 'mdi-monitor', device: 'extra-large', code: 'xl', type: 'breakpoints-table.large-to-extra-large', range: '1545px > < 2138px', }, { icon: 'mdi-monitor-screenshot', device: 'extra-extra-large', code: 'xxl', type: 'breakpoints-table.extra-large-to-extra-extra-large', range: '> 2138px', }, ] const headers = [ 'device', 'code', 'type', 'range', ] const { t } = useI18n() </script>