wupengfei
1 天以前 eabc398d45d13a3c94034ca461f488d7b9e525eb
apps/cMiniApp/src/subpackages/authentication/extraPage/extraPage.vue
@@ -1,18 +1,17 @@
<template>
  <!-- web-view 组件用于加载外部链接 -->
  <web-view :src="urla" />
  <web-view :src="urlLink" />
</template>
<script setup lang="ts">
import Taro from '@tarojs/taro';
defineOptions({
  name: 'authenticationFaRen',
  name: 'extraPage',
});
const router = Taro.useRouter();
const url = (router.params.url as string) ?? '';
const urla = computed(() => decodeURIComponent(url));
const urlLink = computed(() => decodeURIComponent(url));
</script>