processConfig.vue
473 Bytes
<template>
<div >
<iframe :id=id :src=src class="iframe" ></iframe>
</div>
</template>
<script>
import { getToken ,Workflow} from "@/utils/auth";
export default {
name: "processConfig",
data(){
return{
src:"http://"+Workflow+"/itsm/index.html#/ProcessConfig"+"?access_token="+getToken(),
id:"processConfig_iframe"
}
}
}
</script>
<style scoped>
.iframe{
width:100%;
height:calc(100vh - 88px);
border: none;
}
</style>