Files
jdt-game/src/pages/webview/index.vue
Huakk 8c83f44d4c
All checks were successful
continuous-integration/drone/push Build is passing
fix(custom):
2024-07-11 23:52:37 +08:00

19 lines
281 B
Vue

<template>
<view>
<web-view :src="src" />
</view>
</template>
<script setup lang="ts">
import { ref } from 'vue'
import Taro from '@tarojs/taro'
const src = ref('')
Taro.useLoad((e) => {
src.value = Taro.getStorageSync("url")
})
</script>
<style lang="scss"></style>