/
wax_boy
/
semaphore_custom
Обзор
Документация
Войти
/
wax_boy
/
semaphore_custom
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
web/src/components/IntegrationExtractorForm.vue
43 строки
986 B
fiftin
feat: remove extractors from ui
06 мар 2024, 17:02
06 мар 2024, 17:02
1b3a6e1
Код
Авторство
О чём код?
<template> <v-form ref="form" lazy-validation v-model="formValid" > <v-alert :value="formError" color="error" class="pb-2" >{{ formError }}</v-alert> <v-text-field v-model="item.name" label="Name" :rules="[v => !!v || 'Name is required']" required :disabled="formSaving" ></v-text-field> </v-form> </template> <script> import ItemFormBase from '@/components/ItemFormBase'; import IntegrationExtractorFormBase from '@/components/IntegrationExtractorFormBase'; export default { mixins: [ItemFormBase, IntegrationExtractorFormBase], data() { return { projectId: this.$route.params.projectId, integrationId: this.$route.params.integrationId, }; }, methods: { getItemsUrl() { return `/api/project/${this.projectId}/integrations`; }, getSingleItemUrl() { return `/api/project/${this.projectId}/integrations/${this.integrationId}`; }, }, }; </script>