123456789101112131415161718192021222324252627282930313233343536 |
- <script setup lang="ts">
- /*
- * 组件名: cocos
- * 组件用途: cocos外框
- * 创建日期: 2024/8/21
- * 编写者: JutarryWu
- */
- const userId = sessionStorage.getItem('userId')
- const src = `http://49.232.26.44:8213/?userId=${userId}`
- async function exec() {
- }
- onMounted(() => {
- exec()
- })
- </script>
- <template>
- <section class="app-container">
- <div v-if="false" class="absolute top-[12px] right-[12px] z-[999] cursor-pointer">
- <van-icon name="arrow-up" class="text-[24px] text-[#fff]" />
- </div>
- <iframe
- :src="src"
- width="100%"
- height="100%"
- frameborder="0"
- scrolling="no"
- />
- </section>
- </template>
- <style scoped lang="less">
- .app-container {
- }
- </style>
|