This commit is contained in:
Cihan Şentürk 2021-09-03 12:14:27 +03:00
parent ebeb8df1da
commit 414e405168

View File

@ -75,24 +75,24 @@ export default {
props: { props: {
buttonText: { buttonText: {
type: String, type: String,
default: 'Edit your business address ', default: 'Edit your business address ',
description: 'Input placeholder' description: 'Input placeholder'
}, },
taxNumberText: { taxNumberText: {
type: String, type: String,
default: 'Tax Number', default: 'Tax Number',
description: 'Input placeholder' description: 'Input placeholder'
}, },
companyId: { companyId: {
type: String, type: String,
default: '', default: '',
description: 'Contact search route' description: 'Contact search route'
}, },
company: { company: {
type: Object, type: Object,
default: {}, default: {},
description: 'Company object' description: 'Company object'
}, },
countryText: { countryText: {
type: [Array, Object], type: [Array, Object],
@ -112,15 +112,15 @@ export default {
data() { data() {
return { return {
form: {}, form: {},
company_form: { company_form: {
text: this.companyForm.text, text: this.companyForm.text,
show: false, show: false,
path: url + '/modals/companies/' + this.companyId + '/edit', path: url + '/modals/companies/' + this.companyId + '/edit',
buttons: this.companyForm.buttons, buttons: this.companyForm.buttons,
}, },
company_html: '', company_html: '',
company_data: this.company, company_data: this.company,
}; };
}, },