您好,登錄后才能下訂單哦!
這篇文章主要介紹vue.js聲明全局變量的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
vue.js聲明全局變量的方法:首先設置專用的的全局變量模塊文件,模塊里面定義一些變量初始狀態;然后用export default暴露出去;最后在【main.js】里面使用【Vue.prototype】掛載到vue實例上面,引入該模塊即可。
vue.js聲明全局變量的方法:
定義全局變量
原理: 設置一個專用的的全局變量模塊文件,模塊里面定義一些變量初始狀態,用 export default 暴露出去,在 main.js 里面使用 Vue.prototype 掛載到 vue 實例上面或者在其它地方需要使用時,引入該模塊便可。
全局變量模塊文件:
Global.vue 文件
<script> const serverSrc='www.baidu.com'; const token='12345678'; const hasEnter=false; const userSite="中國釣魚島"; export default { userSite,//用戶地址 token,//用戶token身份 serverSrc,//服務器地址 hasEnter,//用戶登錄狀態 } </script>
方法一: 在需要的地方引用進全局變量模塊文件,然后通過文件里面的變量名字獲取全局變量參數值。
<template> <div>{{ token }}</div> </template> <script> import global_ from '../../components/Global'//引用模塊進來 export default { name: 'text', data () { return { token:global_.token,//將全局變量賦值到data里面,也可以直接使用global_.token } } } </script> <style scoped> </style>
方法二: 在程序入口的 main.js 文件里面,將上面那個 Global.vue 文件掛載到 Vue.prototype。
import global_ from './components/Global'//引用文件 Vue.prototype.GLOBAL = global_//掛載到Vue實例上面
接著在整個項目中不需要再通過引用 Global.vue 模塊文件,直接通過 this 就可以直接訪問 Global 文件里面定義的全局變量。
text2.vue:
<template> <div>{{ token }}</div> </template> <script> export default { name: 'text', data () { return { token:this.GLOBAL.token,//直接通過this訪問全局變量。 } } } </script> <style scoped> </style>
以上是“vue.js聲明全局變量的方法”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。