mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 19:51:09 -04:00
20 lines
389 B
JavaScript
20 lines
389 B
JavaScript
import addressStub from '@/scripts/admin/stub/address.js'
|
|
|
|
export default function () {
|
|
return {
|
|
name: '',
|
|
contact_name: '',
|
|
email: '',
|
|
phone: null,
|
|
password: '',
|
|
confirm_password:'',
|
|
currency_id: null,
|
|
website: null,
|
|
billing: { ...addressStub },
|
|
shipping: { ...addressStub },
|
|
customFields: [],
|
|
fields: [],
|
|
enable_portal: false,
|
|
}
|
|
}
|