Changeset d45005e in uz for src/UploadTest.vue
- Timestamp:
- 2022.10.06 19:55:24 (2 years ago)
- Branches:
- master
- Children:
- 76e46d7
- Parents:
- 64249d6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UploadTest.vue
r64249d6 rd45005e 31 31 const abort = (): void => { 32 32 (inst as any).refs.uploader.abort() 33 } 34 35 const log = (code: string, args: any[]) => { 36 console.log.apply(null, ['>', code].concat(args)) 33 37 } 34 38 … … 59 63 @update:canStart='(flag: boolean) => can_start = flag' 60 64 @update:canAbort='(flag: boolean) => can_abort = flag' 61 @update:canReset='(flag: boolean) => can_reset = flag'> 65 @update:canReset='(flag: boolean) => can_reset = flag' 66 @debug='(code: string, args: any[]) => log(code, args)'> 62 67 <template #idle='{ pick }'> 63 68 <div class='idle'>
Note:
See TracChangeset
for help on using the changeset viewer.