/
githubmirror
/
vuetify
Обзор
Документация
Войти
/
githubmirror
/
vuetify
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/docs/src/components/api/SassTable.vue
17 строк
395 B
John Leider
chore: add vue/attributes-order eslint rule
29 фев 2024, 07:06
29 фев 2024, 07:06
65aff8f
Код
Авторство
О чём код?
<template> <ApiApiTable :headers="headers"> <template #row="{ props, item }"> <tr v-bind="props"> <ApiNameCell :name="item.name" :new-in="item.newIn" section="sass" /> <td> <ApiPrismCell :code="item.default" /> </td> </tr> </template> </ApiApiTable> </template> <script setup lang="ts"> const headers = ['name', 'default'] </script>