This commit is contained in:
Viet An
2026-05-27 14:14:02 +07:00
parent 29ff3f2598
commit 5e958e4166
8 changed files with 711 additions and 24 deletions

View File

@@ -34,7 +34,7 @@
</div>
</div>
<div :class="['column', { 'px-0': viewport === 1 }]">
<CustomerInfo2
<CustomerForm
v-if="tab === 'info' && record !== undefined"
v-bind="{ row: record, pagename, application }"
@update="update"
@@ -70,10 +70,11 @@
<script setup>
import { computed, ref } from "vue";
import { useNuxtApp } from "#app";
import CustomerInfo2 from "~/components/customer/CustomerInfo2";
import CustomerView from "~/components/customer/CustomerView";
import CustomerForm from "~/components/customer/CustomerForm.vue";
import CustomerView from "~/components/customer/CustomerView.vue";
import Modal from "~/components/Modal.vue";
import { useStore } from "@/stores/index";
import ImageGallery from "@/components/media/ImageGallery.vue";
const nuxtApp = useNuxtApp();
const { $dialog } = nuxtApp;