22 lines
502 B
Vue
22 lines
502 B
Vue
|
|
<template>
|
||
|
|
<div></div>
|
||
|
|
<!-- <router-link :to="url" target="_blank"></router-link> -->
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
// url: '/new-page' // 目标页面的路径
|
||
|
|
};
|
||
|
|
},
|
||
|
|
created () {
|
||
|
|
this.openNewWindow()
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
openNewWindow() {
|
||
|
|
window.open('http://112.29.103.165:21624/index01.html?token='+localStorage.getItem('token'), '_blank');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
};
|
||
|
|
</script>
|