fix(table): make sure the editing line is working, fix #439

This commit is contained in:
Vben
2021-04-01 00:52:31 +08:00
parent 8a14069e71
commit b54b794264
14 changed files with 196 additions and 53 deletions

10
types/global.d.ts vendored
View File

@@ -10,6 +10,16 @@ declare global {
declare interface Window {
// Global vue app instance
__APP__: App<Element>;
__APP_INFO__: {
pkg: {
name: string;
version: string;
dependencies: Recordable<string>;
devDependencies: Recordable<string>;
};
lastBuildTime: string;
};
}
// vue