-
-import { computed, ref, watch } from 'vue';
+import { computed, ref } from 'vue';
import { useI18n } from 'vue-i18n';
import { useRoute } from 'vue-router';
import { toCurrency, toDateHourMin } from 'src/filters';
import VnTable from 'src/components/VnTable/VnTable.vue';
-import FetchData from 'components/FetchData.vue';
-import FormModel from 'components/FormModel.vue';
-import VnRow from 'components/ui/VnRow.vue';
-import VnInput from 'src/components/common/VnInput.vue';
import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue';
const { t } = useI18n();
const route = useRoute();
const tableRef = ref();
-// const rows = ref([]);
const filter = {
include: [
@@ -70,15 +65,6 @@ const columns = computed(() => [
},
},
]);
-
-// watch(
-// () => route.params.id,
-// (newValue) => {
-// if (!newValue) return;
-// filter.where.clientFk = newValue;
-// clientInformasRef.value?.fetch();
-// }
-// );
diff --git a/src/pages/Customer/Card/CustomerDescriptorMenu.vue b/src/pages/Customer/Card/CustomerDescriptorMenu.vue
index 2d8cceda3..88eec33a4 100644
--- a/src/pages/Customer/Card/CustomerDescriptorMenu.vue
+++ b/src/pages/Customer/Card/CustomerDescriptorMenu.vue
@@ -1,7 +1,6 @@