This commit is contained in:
gyq
2026-03-31 10:03:54 +08:00
parent 5fab9a857a
commit c3a20ab2db
2 changed files with 5 additions and 12 deletions

View File

@@ -11684,14 +11684,7 @@ var _eval = EvalError;
var range = RangeError;
var ref = ReferenceError;
var syntax = SyntaxError;
var type;
var hasRequiredType;
function requireType() {
if (hasRequiredType) return type;
hasRequiredType = 1;
type = TypeError;
return type;
}
var type = TypeError;
var uri = URIError;
var abs$1 = Math.abs;
var floor$1 = Math.floor;
@@ -11937,7 +11930,7 @@ function requireCallBindApplyHelpers() {
if (hasRequiredCallBindApplyHelpers) return callBindApplyHelpers;
hasRequiredCallBindApplyHelpers = 1;
var bind3 = functionBind;
var $TypeError2 = requireType();
var $TypeError2 = type;
var $call2 = requireFunctionCall();
var $actualApply = requireActualApply();
callBindApplyHelpers = function callBindBasic(args) {
@@ -12010,7 +12003,7 @@ var $EvalError = _eval;
var $RangeError = range;
var $ReferenceError = ref;
var $SyntaxError = syntax;
var $TypeError$1 = requireType();
var $TypeError$1 = type;
var $URIError = uri;
var abs = abs$1;
var floor = floor$1;
@@ -12341,7 +12334,7 @@ var GetIntrinsic2 = getIntrinsic;
var $defineProperty = GetIntrinsic2("%Object.defineProperty%", true);
var hasToStringTag = requireShams()();
var hasOwn$2 = hasown;
var $TypeError = requireType();
var $TypeError = type;
var toStringTag = hasToStringTag ? Symbol.toStringTag : null;
var esSetTostringtag = function setToStringTag(object, value) {
var overrideIfSet = arguments.length > 2 && !!arguments[2] && arguments[2].force;

View File

@@ -5,7 +5,7 @@ import test from "@/views/home/test.vue";
const routes = [
{
path: "/",
// name: "home",
name: "home",
component: test,
// component: home,
},