Fixed form creation

This commit is contained in:
Julien Nahum
2023-12-20 16:10:32 +01:00
parent b598a16406
commit af5656ce81
34 changed files with 363 additions and 356 deletions

View File

@@ -387,6 +387,7 @@
</template>
<script>
import timezones
import timezones from '../../../../../../data/timezones.json'
import countryCodes from '../../../../../../data/country_codes.json'
import CountryFlag from 'vue-country-flag-next'

View File

@@ -91,20 +91,16 @@
</template>
<script>
import Loader from '../../../common/Loader.vue'
import Form from 'vform'
import axios from 'axios'
export default {
name: 'CreateFormBaseModal',
components: { Loader },
components: { },
props: {
show: { type: Boolean, required: true }
},
data: () => ({
state: 'default',
aiForm: new Form({
aiForm: useForm({
form_prompt: ''
}),
loading: false