feat: 表格排序

Former-commit-id: 07383021b7a17b5beb30a8b6284478b5512c1743
This commit is contained in:
April
2023-06-14 23:37:06 +08:00
parent eed20ce145
commit 3e30327e4d
3 changed files with 106 additions and 16 deletions

6
src/types/env.d.ts vendored
View File

@@ -1,7 +1,7 @@
/// <reference types="vite/client" />
declare module '*.vue' {
import { DefineComponent } from 'vue';
declare module "*.vue" {
import { DefineComponent } from "vue";
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
const component: DefineComponent<{}, {}, any>;
export default component;
@@ -17,3 +17,5 @@ interface ImportMetaEnv {
interface ImportMeta {
readonly env: ImportMetaEnv;
}
declare module "lodash-es";