Files
NSG_PORTAL_V2/components/dynamic-page/page-component/templates/navigations/layouts/Direction.vue
T

36 lines
775 B
Vue
Raw Normal View History

2024-06-17 11:48:00 +07:00
<script setup lang="ts">
2024-06-18 14:25:58 +07:00
import isEmpty from "lodash/isEmpty";
2024-06-17 11:48:00 +07:00
// import DynamicComponent from "~/components/cms/page-component/templates/index.vue";
// import { getInputValue } from "@/utils/cms/page/parseSQL";
// const emit = defineEmits(["selectComponent"]);
// const _props = defineProps<{
// dataResult?: any[];
// dataQuery?: string;
// component?: any;
// }>();
// const SETTING_OPTIONS = {
// MAX_ELEMENT: 10,
// };
</script>
<template>
ád
<!-- <section>
<div v-for="navItem, index in Array(SETTING_OPTIONS.MAX_ELEMENT).fill({})" :key="index">
<div class="empty"></div>
</div>
</section> -->
</template>
<style lang="scss" scoped>
.empty {
width: 120px;
min-height: 100px;
border-radius: 6px;
background: #409eff;
}
</style>