You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
638 B
25 lines
638 B
2 years ago
|
<template>
|
||
|
<div></div>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
import { useRoute } from 'vue-router'
|
||
|
const router = useRoute()
|
||
|
defineOptions({ name: 'big' })
|
||
|
console.log(router.path)
|
||
|
var str =router.path;
|
||
|
var lastSlashIndex =str.lastIndexOf('/');
|
||
|
if (lastSlashIndex === -1) {
|
||
|
window.open('http://localhost:26111/#/chart/preview/'+str)
|
||
|
//window.open('http://10.140.10.4:26111/#/chart/preview/'+str)
|
||
|
}
|
||
|
window.open('http://localhost:26111/#/chart/preview/'+str.slice(lastSlashIndex + 1))
|
||
|
//window.open('http://10.140.10.4:26111/#/chart/preview/'+str.slice(lastSlashIndex + 1))
|
||
|
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|
||
|
|