Files
youlai-app/src/pages/work/monitor/index.vue
2026-03-13 00:04:42 +08:00

27 lines
436 B
Vue

<template>
<view class="page">
<web-view :src="monitorUrl" />
</view>
</template>
<script setup lang="ts">
import { ref } from "vue";
// SpringBoot Admin 监控地址
const monitorUrl = ref("http://localhost:9090/wallboard");
</script>
<style lang="scss" scoped>
.page {
width: 100%;
height: 100vh;
}
</style>
<route lang="json">
{
"name": "monitor",
"style": { "navigationBarTitleText": "应用监控" }
}
</route>