16 lines
308 B
Vue
Raw Normal View History

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