wupengfei
2 天以前 9294828468fd5cc838e5479047400b989f32549c
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>