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

This commit is contained in:
2024-05-29 12:31:44 +08:00
parent 1bbaeb821d
commit d163995765
4 changed files with 11 additions and 8 deletions

View File

@@ -1,3 +1,4 @@
export default definePageConfig({
navigationBarTitleText: "",
navigationStyle: "custom",
});

View File

@@ -3,14 +3,14 @@
</template>
<script setup lang="ts">
import { ref } from "vue";
import { getStorageSync, useLoad } from "@tarojs/taro";
import { WebView } from "@tarojs/components";
import {ref} from 'vue';
import {getStorageSync, useDidShow} from '@tarojs/taro';
import {WebView} from '@tarojs/components';
const url = ref("");
const url = ref('');
useLoad(() => {
url.value = getStorageSync("game_url");
useDidShow(() => {
url.value = getStorageSync('game_url');
});
</script>