/
phoenix.rfa
/
BacklogApp
Обзор
Документация
Войти
/
phoenix.rfa
/
BacklogApp
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
clientapp/src/components/addControl.vue
28 строк
589 B
phoenix
Add project files.
26 янв 2022, 09:28
26 янв 2022, 09:28
4a4488b
Код
Авторство
О чём код?
<template> <div class="list-group-item text-center"> <button v-if="isStandby" @click="toggle" type="button" class="btn text-primary p-0 w-100"> <slot name="button">Add new item</slot> </button> <div v-else class="row"> <slot :toggle="toggle"></slot> </div> </div> </template> <script> export default { name: 'AddControl', emits: ['toggle'], data() { return { isStandby: true, }; }, methods: { toggle() { this.isStandby = !this.isStandby; this.$emit('toggle', { isStandby: this.isStandby }); }, }, }; </script>