2025-02-26 07:12:29 +00:00
|
|
|
<script setup>
|
2025-02-28 07:08:48 +00:00
|
|
|
import CheckoutPage from '@/components/stripe/CheckoutPage.vue'
|
|
|
|
import CompletePage from '@/components/stripe/CompletePage.vue'
|
2025-02-26 07:12:29 +00:00
|
|
|
definePageMeta({
|
|
|
|
layout: 'default',
|
2025-02-28 03:41:34 +00:00
|
|
|
title: 'Stripe支付'
|
2025-02-26 07:12:29 +00:00
|
|
|
})
|
|
|
|
const route = useRoute()
|
2025-02-28 07:08:48 +00:00
|
|
|
const key=route.query.key??''
|
2025-02-26 11:57:21 +00:00
|
|
|
|
2025-02-26 07:12:29 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div>
|
2025-02-28 07:08:48 +00:00
|
|
|
<CheckoutPage/>
|
|
|
|
<!-- <iframe class="w-100vw h-100vh" :src="`/stripe/checkout.html?key=${key}`"></iframe> -->
|
2025-02-26 07:12:29 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|