feat(custom):
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-04-29 15:22:17 +08:00
parent dcbd0eaae5
commit 2819372cb9
12 changed files with 109 additions and 31 deletions

View File

@@ -0,0 +1,17 @@
<template>
<web-view style="height: 100vh; width: 100vw" :src="url"></web-view>
</template>
<script setup lang="ts">
import { ref } from "vue";
import { getStorageSync, useLoad } from "@tarojs/taro";
import { WebView } from "@tarojs/components";
const url = ref("");
useLoad(() => {
url.value = getStorageSync("game_url");
});
</script>
<style lang="scss"></style>