Files
ipms-sjy/yudao-ui-admin/src/views/infra/skywalking/index.vue

16 lines
310 B
Vue
Raw Normal View History

2021-02-20 17:49:42 +08:00
<template>
2022-02-15 22:24:48 +08:00
<i-frame :src="url" />
2021-02-20 17:49:42 +08:00
</template>
<script>
2022-02-15 22:24:48 +08:00
import iFrame from "@/components/iFrame/index";
2021-02-20 17:49:42 +08:00
export default {
2022-02-15 22:24:48 +08:00
name: "Druid",
components: { iFrame },
2021-02-20 17:49:42 +08:00
data() {
return {
2022-02-15 22:24:48 +08:00
url: "http://skywalking.shop.iocoder.cn/trace", // TODO 芋艿,后续改成配置读取
2021-02-20 17:49:42 +08:00
};
},
};
</script>