11 lines
294 B
Vue
11 lines
294 B
Vue
|
<script>
|
||
|
//服务端口是9292
|
||
|
const serviceapiurl = 'http://192.168.0.40:9292/api';
|
||
|
const authtoken = '';
|
||
|
const authtokenKey = '';
|
||
|
export default {
|
||
|
authtoken, //登录后获取的token
|
||
|
authtokenKey, //登录后获取的tokenkey
|
||
|
serviceapiurl, //后台服务API的地址
|
||
|
}
|
||
|
</script>
|