This commit is contained in:
X1627315083
2025-09-01 14:03:30 +08:00
parent c387a71ba8
commit 89639aaec9
49 changed files with 819 additions and 232 deletions

View File

@@ -1,20 +1,28 @@
<script setup lang="ts">
import { ref, onMounted, onUnmounted, reactive, toRefs } from "vue";
import { useRouter,useRoute } from 'vue-router'
const route = useRoute()
//const props = defineProps({
//})
//const emit = defineEmits([
//])
let data = reactive({
lang: ''
})
onMounted(()=>{
data.lang = route?.query?.lang
console.log(lang)
})
onUnmounted(()=>{
})
defineExpose({})
const {} = toRefs(data);
const {lang} = toRefs(data);
</script>
<template>
<div class="userManual">
<div class="userManual" v-if="lang == 'CHINESE_SIMPLIFIED'">
<iframe src="https://aida-user-manual-chinese.super.site/" width="100%" height="100%" frameborder="0" allowfullscreen />
</div>
<div class="userManual" v-else-if="lang">
<iframe src="https://aida-user-manual.super.site/" width="100%" height="100%" frameborder="0" allowfullscreen />
</div>
</template>