1, 在env.d.ts声明文件中声明如下:
declare module "@vue/runtime-core" {
interface ComponentCustomProperties {
APP_TITLE: string
}
}
2, 在main.ts中添加如下
app.config.globalProperties.APP_TITLE="九线八站"
3, 使用
this.APP_TITLE
如果使用了pnpm安装依赖,会发生找不到@vue/runtime-core,这时在根目录下新增.npmrc文件,内容如下:
public-hoist-pattern[]=*@vue/runtime-core*
就可以找到了,不然依赖会放在.pnpm文件夹下面