mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 04:01:10 -04:00
17 lines
313 B
JavaScript
17 lines
313 B
JavaScript
import addressStub from '@/scripts/stub/address.js'
|
|
|
|
export default function () {
|
|
return {
|
|
name: '',
|
|
contact_name: '',
|
|
email: '',
|
|
phone: null,
|
|
currency_id: null,
|
|
website: null,
|
|
billing: { ...addressStub },
|
|
shipping: { ...addressStub },
|
|
customFields: [],
|
|
fields: []
|
|
}
|
|
}
|