Files
regulatory-management-system/code/web/regulatory-management-util/7788.md
2025-10-24 00:36:24 +08:00

18 lines
472 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## vue3 引入@路径
path模块问题
要安装@type/nodenpm install @types/node --save-dev
之后就可以加载path
import path from "path";
resolve: {
//配置别名
alias: [
{
find: /^~/,
replacement: "",
},
{
find: "@",
replacement: path.resolve( __dirname, "src" ),
},
],
},