index.vue
373 Bytes
<template>
<div >
<iframe id="index" :src=src ref="iframe" class="layadmin-iframe"></iframe>
</div>
</template>
<script>
import { getToken ,Workflow} from "@/utils/auth";
export default {
name: "index",
data(){
return{
src:"http://"+Workflow+"/itsm/index.html#/index"+"?access_token="+getToken(),
}
}
}
</script>
<style scoped>
</style>