src/main.js
@@ -17,6 +17,13 @@ const pinia = createPinia() // 对toFixed数字保留位数二次封装(ps:toFixed返回的是字符串) Number.prototype.toHold = function (value) { let hold = this.toFixed(value); hold = Number(hold); return hold; }; app.use(ElementPlus); app.use(router); app.use(pinia);