mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-03 05:41:59 +08:00
16 lines
308 B
Vue
16 lines
308 B
Vue
<template>
|
|
<i-frame :src="url" />
|
|
</template>
|
|
<script>
|
|
import iFrame from "@/components/iFrame/index";
|
|
export default {
|
|
name: "Druid",
|
|
components: { iFrame },
|
|
data() {
|
|
return {
|
|
url: "http://skywalking.shop.iocoder.cn/log", // TODO 芋艿,后续改成配置读取
|
|
};
|
|
},
|
|
};
|
|
</script>
|