【vue隨手筆記】Vue設定靜態常量
1、自定義目錄:
在src 下建立 constants 目錄 如圖所示:
2、自定義js:
在新建好的constants中建立自己自定義的JS檔案,如圖所示:
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、點選效果:
相關文章
- vue隨筆Vue
- vue 常量定義和使用Vue
- vue常量定義以及使用Vue
- Vue學習筆記(一)------腳手架vue cliVue筆記
- vue筆記Vue筆記
- 安卓手機怎麼設定靜態IP?安卓
- 安卓手機怎麼設定靜態IP安卓
- Vue TypeScript 實戰:掌握靜態型別程式設計VueTypeScript型別程式設計
- vue元件筆記Vue元件筆記
- 筆記:面試 - Vue筆記面試Vue
- vue - 使用筆記Vue筆記
- vue搭建筆記Vue筆記
- vue常用筆記Vue筆記
- 轉前端 vue.js 學習筆記-1.2-使用 let 與 const 定義常量變數前端Vue.js筆記變數
- vue學習筆記(六) ----- vue元件Vue筆記元件
- vue-cli腳手架打包的靜態資源請求出錯Vue
- Vue中的靜態型別檢查Vue型別
- 靜態路由介紹(雲端計算隨筆)路由
- Bitbucket / Sourcetree 隨手筆記筆記
- vue-router筆記Vue筆記
- vue學習筆記Vue筆記
- vue入門筆記Vue筆記
- Vue讀書筆記Vue筆記
- Vue 學習筆記Vue筆記
- VBA靜態變數與常量(轉)變數
- vue 靜態檔案上傳到七牛Vue
- vue中 靜態檔案引用注意事項Vue
- vue學習筆記(七)---- vue中的路由Vue筆記路由
- vue2.0 vue-router學習筆記Vue筆記
- Ubuntu裡怎樣設定靜態IP?Ubuntu中設定靜態IP的方法Ubuntu
- Vue 超詳細手記Vue
- centos 7 設定靜態ipCentOS
- OpenSUSE的靜態IP設定
- ios layoutSubviews呼叫隨手筆記iOSView筆記
- SpringBoot隨手筆記Spring Boot筆記
- vue 學習筆記 - vuexVue筆記
- vue一些筆記Vue筆記
- 筆記:Vue 使用pug + ts筆記Vue