2
0
mirror of https://github.com/frappe/books.git synced 2024-11-10 07:40:55 +00:00

feat: payment modal init

This commit is contained in:
akshayitzme 2023-08-23 11:31:19 +05:30 committed by akshayitzme
parent e7486db8ad
commit ab3f1e0542

View File

@ -0,0 +1,17 @@
<template>
<Modal class="w-2/5 ml-auto mr-3.5" :open-modal="openModal">
<div class="px-4 py-6 grid" style="height: 95vh">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Odit, cumque.
</div>
</Modal>
</template>
<script>
import Modal from 'src/components/Modal.vue';
import { defineComponent } from 'vue';
export default defineComponent({
name: 'PaymentModal',
components: { Modal },
});
</script>