/
devron
/
ecomm-app
Обзор
Документация
Войти
/
devron
/
ecomm-app
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
resources/js/Components/Grid/Col.vue
14 строк
264 B
Romulus
first init
17 апр 2024, 15:18
17 апр 2024, 15:18
6886bc2
Код
Авторство
О чём код?
<script setup> import { defineProps } from 'vue' const { as } = defineProps(['col', 'as']); const Component = as || 'div'; </script> <template> <Component :class="[ 'col' + (col ? '-' + col : '') ]"> <slot /> </Component> </template>