Rumah > Artikel > hujung hadapan web > vue.js怎样定义变量
vue.js定义变量的方法:首先定义一个vue模块;然后使用const定义变量,并使用export对外暴露;最后在需要使用到全局变量的模块中进行导入即可。
本教程操作环境:windows10系统、vue2.9版,该方法适用于所有品牌电脑。
(相关视频分享:javascript视频教程)
定义变量的步骤如下:
1、定义一个vue模块,const定义变量,并用export对外暴露.
Globle.vue
<script> // 服务端url const SERVER_BASE_URL = 'http://10.199.xxx.x0:8081/' export default{ SERVER_BASE_URL } </script>
2、在用到全局变量的模块,import后再使用
test.vue
import global_ from 'components/common/Global.vue' console.log(global_.SERVER_BASE_URL)
相关推荐:vue.js教程
Atas ialah kandungan terperinci vue.js怎样定义变量. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!