mirror of
https://gitee.com/JavaLionLi/plus-ui.git
synced 2026-09-13 15:53:42 +08:00
21 lines
440 B
Vue
21 lines
440 B
Vue
<template>
|
|
<div class="p-2 app-container iframe-page">
|
|
<div class="iframe-page__inner">
|
|
<i-frame v-model:src="url"></i-frame>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const url = ref(import.meta.env.VITE_APP_MONITOR_ADMIN);
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.iframe-page__inner {
|
|
overflow: hidden;
|
|
border-radius: 14px;
|
|
background: var(--app-surface-bg);
|
|
box-shadow: var(--app-shadow-sm);
|
|
}
|
|
</style>
|