fix: loadmore

This commit is contained in:
zzc
2026-02-08 19:07:06 +08:00
parent 2437ed9d2f
commit 1476ceed51
3 changed files with 84 additions and 0 deletions

21
pages/webview/index.vue Normal file
View File

@@ -0,0 +1,21 @@
<template>
<view>
<web-view :src="url"></web-view>
</view>
</template>
<script setup>
import { ref } from "vue";
import { onLoad } from "@dcloudio/uni-app";
const url = ref("");
onLoad((options) => {
if (options.url) {
url.value = decodeURIComponent(options.url);
}
});
</script>
<style scoped>
</style>