mirror of
https://github.com/YunaiV/ruoyi-vue-pro.git
synced 2025-11-02 14:43:46 +08:00
12 lines
241 B
Vue
12 lines
241 B
Vue
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
const BASE_URL = import.meta.env.VITE_BASE_URL
|
|
const src = ref(BASE_URL + '/admin/applications')
|
|
</script>
|
|
|
|
<template>
|
|
<ContentWrap>
|
|
<IFrame :src="src" />
|
|
</ContentWrap>
|
|
</template>
|