wupengfei
4 天以前 aebf1603cd6df5341160ffe23c715919bf14c4a7
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>