liveh5-nuxt/app/pages/externallinks/index.vue
xingyy 70fa0eb135 feat(payment): 添加 Stripe 支付功能
- 新增 Stripe 支付页面和相关资源
- 实现支付流程和状态展示
- 添加错误处理和重试功能
2025-02-28 11:41:34 +08:00

21 lines
314 B
Vue

<script setup>
definePageMeta({
layout: 'default',
title: 'Stripe支付'
})
const route = useRoute()
const url=route.query.url??''
</script>
<template>
<div>
<iframe class="w-100vw h-100vh" src="/stripe/checkout.html?_ijt=klcciv1ggvbrm6h834l75lnnga"></iframe>
</div>
</template>
<style scoped>
</style>