minhnt-dev: fix log in server

This commit is contained in:
MoreStrive
2024-06-21 09:59:14 +07:00
parent 6a275c354e
commit a447a8a7aa
5 changed files with 5 additions and 6 deletions
@@ -3,7 +3,7 @@
import { COLLECTION_QUERY_DROP, getValueStringWithKeyAndColon, getInputValue } from '@/utils/parseSQL'; import { COLLECTION_QUERY_DROP, getValueStringWithKeyAndColon, getInputValue } from '@/utils/parseSQL';
const _props = defineProps<{ const _props = defineProps<{
dataResult?: any[]; dataResult?: any;
dataQuery?: string; dataQuery?: string;
}>(); }>();
@@ -5,7 +5,7 @@ import { isEmpty } from "@/utils/lodash";
const emit = defineEmits(["dropData", "selectComponent"]); const emit = defineEmits(["dropData", "selectComponent"]);
const _props = defineProps<{ const _props = defineProps<{
dataResult?: any[]; dataResult?: any;
dataQuery?: string; dataQuery?: string;
label?: string; label?: string;
}>(); }>();
@@ -12,7 +12,7 @@ const emit = defineEmits(["dropComponent", "dropData", "selectComponent"]);
// const { currentScreenMode } = storeToRefs(useCmsPageStore()); // const { currentScreenMode } = storeToRefs(useCmsPageStore());
const _props = defineProps<{ const _props = defineProps<{
dataResult?: any[]; dataResult?: any;
dataQuery?: string; dataQuery?: string;
layout?: string; layout?: string;
label?: string; label?: string;
@@ -6,7 +6,7 @@ const router = useRouter();
const route = useRoute(); const route = useRoute();
const _props = defineProps<{ const _props = defineProps<{
dataResult?: any[]; dataResult?: any;
dataQuery?: string; dataQuery?: string;
component?: any; component?: any;
}>(); }>();
@@ -8,7 +8,7 @@ const route = useRoute();
const emit = defineEmits(["dropData", "selectComponent"]); const emit = defineEmits(["dropData", "selectComponent"]);
const _props = defineProps<{ const _props = defineProps<{
dataResult?: any[]; dataResult?: any;
dataQuery?: string; dataQuery?: string;
component?: any; component?: any;
label?: string; label?: string;
@@ -72,7 +72,6 @@ onBeforeMount(() => {
}); });
const loadPage = (page: string | number) => { const loadPage = (page: string | number) => {
// console.log(`Loading page ${page}`);
// listArticleByCategory.value = // listArticleByCategory.value =
}; };