mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-02-04 12:44:58 +08:00
10 lines
233 B
Vue
10 lines
233 B
Vue
<template>
|
|
<ContentWrap>
|
|
<IFrame :src="src" />
|
|
</ContentWrap>
|
|
</template>
|
|
<script setup lang="ts" name="AdminServer">
|
|
const BASE_URL = import.meta.env.VITE_BASE_URL
|
|
const src = ref(BASE_URL + '/admin/applications')
|
|
</script>
|