()
| 1 | import { formatCurrency } from '../utils/currency' |
| 2 | |
| 3 | export const state = () => ({ |
| 4 | base: { |
| 5 | id: '', |
| 6 | lines: { |
| 7 | edges: [], |
| 8 | }, |
| 9 | estimatedCost: { |
| 10 | subtotalAmount: {}, |
| 11 | totalAmount: {}, |
| 12 | }, |
| 13 | }, |
| 14 | }) |
| 15 | |
| 16 | export const getters = { |
| 17 | id: (state) => { |
nothing calls this directly
no outgoing calls
no test coverage detected