blob: 01519ee724861b00cc5c1591c5d2f4abddb60ae2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<template>
<div id="checkout">
<CheckoutForm></CheckoutForm>
</div>
</template>
<script>
import CheckoutForm from "@/components/checkout/CheckoutForm.vue";
export default {
name: "Checkout",
components: { CheckoutForm }
};
</script>
|