Files
NSG_PORTAL_V2/components/dynamic-page/page-component/templates/navigations/directions/Default.vue
T

33 lines
683 B
Vue
Raw Normal View History

2024-06-17 11:48:00 +07:00
<script setup lang="ts">
2024-06-28 16:41:36 +07:00
import { isEmpty } from "@/utils/lodash";
2024-06-28 15:39:26 +07:00
import DynamicComponent from "~/components/dynamic-page/page-component/templates/index.vue";
import { getInputValue } from "@/utils/parseSQL";
2024-06-17 11:48:00 +07:00
2024-06-28 15:39:26 +07:00
const _props = defineProps<{
dataResult?: any[];
dataQuery?: string;
component?: any;
}>();
2024-06-17 11:48:00 +07:00
2024-06-21 09:56:34 +07:00
const SETTING_OPTIONS = {
MAX_ELEMENT: 10,
};
2024-06-17 11:48:00 +07:00
</script>
<template>
2024-06-21 09:56:34 +07:00
<section>
2024-06-17 11:48:00 +07:00
<div v-for="navItem, index in Array(SETTING_OPTIONS.MAX_ELEMENT).fill({})" :key="index">
<div class="empty"></div>
</div>
2024-06-21 09:56:34 +07:00
</section>
2024-06-17 11:48:00 +07:00
</template>
<style lang="scss" scoped>
.empty {
width: 120px;
min-height: 100px;
border-radius: 6px;
background: #409eff;
}
</style>