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

19 lines
401 B
Vue
Raw Normal View History

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