payment.vue
327 Bytes
<template>
<div class="payment-confirm-wrapper">
</div>
</template>
<script>
export default {
name: 'paymentSheet'
};
</script>
<style lang="scss" scoped>
.payment-confirm-wrapper {
position: fixed;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 99;
}
</style>