新建 globalParams.js 文件
// globalParams.js
export const params = {
currentRoutePath: "",
}; // 用于存放全局参数的对象
image.png
引入 globalParams.js
// 引入
import { params } from "@/utils/globalParams";
// 使用变量
created(){
params.currentRoutePath = this.$route.path.replace('/','');
//console.log('flowbox:'+params.currentRoutePath);
},
网友评论