/
githubmirror
/
vuetify
Обзор
Документация
Войти
/
githubmirror
/
vuetify
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/docs/src/components/app/settings/SettingsHeader.vue
27 строк
477 B
Kael
docs: make the service worker optional, improve precache logic (#20425)
14 окт 2024, 15:05
Не верифицирован
14 окт 2024, 15:05
499f632
Код
Авторство
О чём код?
<template> <div class="d-flex mb-3 w-100"> <div class="flex-1-1-0"> <v-label :text="t(title)" class="mb-1 font-weight-medium"> <slot name="title" /> </v-label> <v-messages :messages="t(text)" active /> </div> <slot /> </div> </template> <script setup> defineProps({ title: { type: String, required: true, }, text: { type: String, required: true, }, }) const { t } = useI18n() </script>