You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
542 B
17 lines
542 B
// store.js
|
|
import { reactive } from 'vue'
|
|
|
|
export const store = reactive({
|
|
// Template headers missing from the document (strings)
|
|
// regex did not match on any headers found in the document
|
|
missingHeaders: [],
|
|
|
|
// Headers found by scanning the document (HeaderAssociator)
|
|
// Contains the following data:
|
|
// - docuemnt header
|
|
// - document header address (excel A1 string)
|
|
// - document header worksheet name
|
|
// - template header (or null)
|
|
// - isValidDate : whether the excel row data is valid
|
|
documentHeaders: [],
|
|
})
|
|
|