美文网首页
Vue 设置全局变量

Vue 设置全局变量

作者: Rinaloving | 来源:发表于2024-02-03 14:36 被阅读0次

    新建 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);
      },
    
    同理,可以在其它页面引入使用

    相关文章

      网友评论

          本文标题:Vue 设置全局变量

          本文链接:https://www.haomeiwen.com/subject/sxjxadtx.html