minhnt-dev: fix build
This commit is contained in:
+1
-1
@@ -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();
|
||||
|
||||
@@ -8,25 +8,25 @@ const CLASS_FOR_LAYOUT = computed(() => {
|
||||
switch (props.layout) {
|
||||
case 'Full_Page':
|
||||
_classForLayout = {
|
||||
page_container: 'page_container w-full px-2',
|
||||
page_container: 'page_container mx-auto w-full px-2',
|
||||
layout_container: 'layout_container px-5',
|
||||
};
|
||||
break;
|
||||
case 'Center_Page':
|
||||
_classForLayout = {
|
||||
page_container: 'page_container w-full px-2 container ',
|
||||
page_container: 'page_container mx-auto w-full px-2 container ',
|
||||
layout_container: 'layout_container container-xxl mx-auto',
|
||||
};
|
||||
break;
|
||||
case 'Background_Page':
|
||||
_classForLayout = {
|
||||
page_container: 'page_container w-full background-container ',
|
||||
page_container: 'page_container mx-auto w-full background-container px-2',
|
||||
layout_container: 'layout_container mx-auto',
|
||||
};
|
||||
break;
|
||||
default:
|
||||
_classForLayout = {
|
||||
page_container: 'page_container px-2',
|
||||
page_container: 'page_container mx-auto px-2',
|
||||
layout_container: 'layout_container',
|
||||
};
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user