edit readme,fix some bug,edit client ui

This commit is contained in:
wzdwc
2020-09-12 20:52:18 +08:00
parent 3105f88f97
commit 70ecee7d87
157 changed files with 6409 additions and 7263 deletions
+12
View File
@@ -0,0 +1,12 @@
import Vue from 'vue';
import { ToastExtendConstructor, IOptions } from '../src/plugins/toast';
interface IPlugin {
toast(options: string | IOptions): ToastExtendConstructor;
}
declare module 'vue/types/vue' {
interface Vue {
$plugin: IPlugin;
}
}