/
Da11oS
/
vue_examples
Обзор
Документация
Войти
/
Da11oS
/
vue_examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/components/props/NestedInject.vue
12 строк
173 B
Da11oS
feat: Composition
17 июл 2025, 00:36
17 июл 2025, 00:36
92da94f
Код
Авторство
О чём код?
<script setup> import { inject } from 'vue'; const car = inject('car'); </script> <template> <div style="border-top: solid;"> {{ car }} </div> </template>