在 Vue3 中使用 TypeScript 定义全局变量可以这样做:
- 创建一个文件,如
global.d.ts
,并在其中声明全局变量。
declare global {
const myGlobalVariable: string;
}
- 在 main.ts 或其他入口文件中引入该文件。
import './global';
- 在需要使用全局变量的地方直接使用即可。
console.log(myGlobalVariable);
注意,这种方式只能用于定义全局变量,不能用于定义全局函数或类。