修正完了error

This commit is contained in:
2020-10-22 11:04:04 +08:00
parent 854ce7191c
commit ff85285fb4
22 changed files with 303 additions and 295 deletions

View File

@@ -1,12 +1,12 @@
import { inject, provide, ref } from 'vue';
interface Language {
[key :string]: string
[key: string]: string;
}
interface Config {
locale: string;
messages: {[key: string]: Language}
messages: {[key: string]: Language};
}
const createI18n = (config: Config) => ({

View File

@@ -10,7 +10,7 @@ interface UploaderDone {
video: {
url: string;
verify_content: string;
}
};
}
export async function uploadflie(file: File,on?: OnFunctio): Promise<UploaderDone> {