liveh5-nuxt/app/pages/externallinks/index.vue

21 lines
314 B
Vue
Raw Normal View History

2025-02-26 07:12:29 +00:00
<script setup>
definePageMeta({
layout: 'default',
title: 'Stripe支付'
2025-02-26 07:12:29 +00:00
})
2025-02-26 07:12:29 +00:00
const route = useRoute()
const url=route.query.url??''
2025-02-26 07:12:29 +00:00
</script>
<template>
<div>
<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>