This commit is contained in:
Paul Wilde 2023-03-27 09:51:00 +01:00
commit c5805185c7
2 changed files with 4 additions and 2 deletions

View file

@ -1,4 +1,5 @@
<template>
<v-container>
<v-card title="Add Comment">
<v-card-text>
<p>Add new comment for : {{ customer.acc_no }} - {{ customer.name }}</p>
@ -11,6 +12,7 @@
</v-card-actions>
</v-card>
</v-container>
</template>
<script>
import axios from 'axios'

View file

@ -20,9 +20,9 @@
</v-list>
</v-card-text>
</v-card>
<v-dialog v-model="dialog[0]">
<v-overlay v-model="dialog[0]" contained class="align-center justify-center">
<AddNote :customer="customer" @return="closeAddNote"></AddNote>
</v-dialog>
</v-overlay>
</template>
<script>
import Customer from '@/types/CustomerType.vue'