美文网首页vue开源工具技巧程序员
【vue随手笔记】Vue设置静态常量

【vue随手笔记】Vue设置静态常量

作者: stormKid | 来源:发表于2018-08-28 16:10 被阅读59次

1、自定义目录:

在src 下建立 constants 目录 如图所示:


建立目录.png

2、自定义js:

在新建好的constants中建立自己自定义的JS文件,如图所示:


建立好的js文件.png

3、在该自定义js文件中写入代码:

    const BASE_URL = "https://www.baidu.com"
    export default{
        BASE_URL
    }

4、在route目录下的index.js中导包并赋值全局变量:

import net from "@/constants/Net.Constants"

Vue.prototype.NET = net

5、使用静态变量:

<template>
        <button  v-on:click="test">
            测试
        </button>
</template>

<script>

export default {
    methods:{
       test: function(){
           console.log('====================================');
           console.log(this.NET.BASE_URL);
           console.log('====================================');
       }
    }
}
</script>

<style lang="less" scoped>

</style>

5、点击效果:

点击效果.png

相关文章

网友评论

    本文标题:【vue随手笔记】Vue设置静态常量

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