21 lines
314 B
Vue
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> |