refactor(project): re-adjust the overall folder

This commit is contained in:
vince
2024-07-23 00:03:59 +08:00
parent a1a566cb2f
commit 14538f7ed5
281 changed files with 1365 additions and 1659 deletions

View File

@@ -11,8 +11,7 @@
"license": "MIT",
"type": "module",
"scripts": {
"build": "pnpm unbuild",
"stub": "pnpm build --stub"
"build": "pnpm unbuild"
},
"files": [
"dist"

View File

@@ -39,7 +39,7 @@ type AnyFunction<T extends any[] = any[], R = void> =
/**
* T | null 包装
*/
type Nullable<T> = T | null;
type Nullable<T> = null | T;
/**
* T | Not null 包装

View File

@@ -1,4 +1,4 @@
import type { RouteRecordRaw, Router } from 'vue-router';
import type { Router, RouteRecordRaw } from 'vue-router';
import type { Component } from 'vue';