| 12345678910111213141516171819202122232425262728293031323334353637 |
- export let dataForm = {
- start_year: 0,
- start_month: 0,
- end_year: 0,
- end_month: 0,
- end_today: 0,
- school_or_institution: '',
- major: '',
- certificate: '',
- awards: '',
- positions_held: '',
- }
-
- export let otherDataForm = {
-
- }
-
-
- export const reset = () => {
- dataForm = {
- start_year: 0,
- start_month: 0,
- end_year: 0,
- end_month: 0,
- end_today: 0,
- school_or_institution: '',
- major: '',
- certificate: '',
- awards: '',
- positions_held: '',
- }
- otherDataForm = {
-
- }
-
- return { dataForm, otherDataForm }
- }
|