12345678910111213141516171819202122 |
- export let dataForm = {
- recruitment_id: 0,
- company_id: 0,
- status: 1,
- }
-
- export let otherDataForm = {
- full_name: null
- }
-
- export const reset = () => {
- dataForm = {
- recruitment_id: 0,
- company_id: 0,
- status: 1,
- };
- otherDataForm = {
- full_name: null
- }
-
- return { dataForm, otherDataForm }
- }
|