Files
aida_front/src/views/userManual.vue

27 lines
557 B
Vue
Raw Normal View History

2025-08-22 10:27:48 +08:00
<script setup lang="ts">
import { ref, onMounted, onUnmounted, reactive, toRefs } from "vue";
//const props = defineProps({
//})
//const emit = defineEmits([
//])
let data = reactive({
})
onMounted(()=>{
})
onUnmounted(()=>{
})
defineExpose({})
const {} = toRefs(data);
</script>
<template>
<div class="userManual">
<iframe src="https://aida-user-manual.super.site/" width="100%" height="100%" frameborder="0" allowfullscreen />
</div>
</template>
<style lang="less" scoped>
.userManual{
width: 100%;
height: 100%;
position: relative;
}
</style>