mirror of
https://github.com/frappe/books.git
synced 2024-11-12 16:36:27 +00:00
feat: payment modal init
This commit is contained in:
parent
e7486db8ad
commit
ab3f1e0542
17
src/pages/NeuPOS/PaymentModal.vue
Normal file
17
src/pages/NeuPOS/PaymentModal.vue
Normal 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>
|
Loading…
Reference in New Issue
Block a user