minhnt-dev: fix build

This commit is contained in:
MoreStrive
2024-05-31 17:05:23 +07:00
parent c5887d911f
commit 57a8a5e15d
8 changed files with 13 additions and 46 deletions
@@ -1,7 +1,7 @@
<script setup lang="ts">
import DynamicComponent from "~/components/dynamic-page/page-component/templates/index.vue";
import { COLLECTION_QUERY_DROP, getValueStringWithKeyAndColon, getInputValue } from '@/utils/parseSQL';
import { isEmpty } from "lodash";
import isEmpty from "lodash/isEmpty";
const _props = defineProps<{
dataResult?: any[];
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { isEmpty } from 'lodash';
import isEmpty from "lodash/isEmpty";
const emit = defineEmits(['dropData', 'selectComponent'])
const _props = defineProps<{
@@ -1,6 +1,5 @@
<script setup lang="ts">
import { isEmpty } from 'lodash';
const emit = defineEmits(['dropData', 'selectComponent'])
import isEmpty from "lodash/isEmpty";
const _props = defineProps<{
dataResult?: any[]
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { isEmpty } from "lodash";
import isEmpty from "lodash/isEmpty";
import DynamicComponent from "~/components/dynamic-page/page-component/templates/index.vue";
import { COLLECTION_PAGING_QUERY_DROP, getInputValue } from "@/utils/parseSQL";
const router = useRouter();