2025-02-26 07:12:29 +00:00
|
|
|
<script setup>
|
|
|
|
definePageMeta({
|
|
|
|
layout: 'default',
|
2025-02-28 03:41:34 +00:00
|
|
|
title: 'Stripe支付'
|
2025-02-26 07:12:29 +00:00
|
|
|
})
|
2025-02-26 11:57:21 +00:00
|
|
|
|
2025-02-26 07:12:29 +00:00
|
|
|
const route = useRoute()
|
|
|
|
const url=route.query.url??''
|
2025-02-28 03:41:34 +00:00
|
|
|
|
2025-02-26 11:57:21 +00:00
|
|
|
|
2025-02-26 07:12:29 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div>
|
2025-02-28 03:41:34 +00:00
|
|
|
<iframe class="w-100vw h-100vh" src="/stripe/checkout.html?_ijt=klcciv1ggvbrm6h834l75lnnga"></iframe>
|
2025-02-26 07:12:29 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|