wupengfei
2 天以前 08740aaf0861ee8c11a8bf6a97a1219f7d198043
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>