apps/cMiniApp/src/subpackages/authentication/extraPage/extraPage.vue
@@ -1,6 +1,5 @@ <template> <!-- web-view 组件用于加载外部链接 --> <web-view :src="urla" /> <web-view :src="urlLink" /> </template> <script setup lang="ts"> @@ -14,5 +13,5 @@ const url = (router.params.url as string) ?? ''; const urla = computed(() => decodeURIComponent(url)); const urlLink = computed(() => decodeURIComponent(url)); </script>