fix: resolve conflict again

This commit is contained in:
riefive
2025-10-20 14:15:48 +07:00
2 changed files with 50 additions and 0 deletions
@@ -0,0 +1,46 @@
<script setup lang="ts">
// Components
import {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
DialogTrigger,
DialogFooter,
} from '~/components/pub/ui/dialog'
import ListHistory from './list-history.vue'
// Types
import type { SepHistoryData } from './list-cfg.history'
import type { PaginationMeta } from '~/components/pub/my-ui/pagination/pagination.type'
const props = defineProps<{
open: boolean
histories: Array<SepHistoryData>
paginationMeta?: PaginationMeta
}>()
const emit = defineEmits<{
(e: 'update:open', value: boolean): void
}>()
</script>
<template>
<Dialog
:open="props.open"
@update:open="emit('update:open', $event)"
>
<DialogTrigger as-child></DialogTrigger>
<DialogContent class="max-w-[50%]">
<DialogHeader>
<DialogTitle>History SEP</DialogTitle>
</DialogHeader>
<div class="overflow-x-auto rounded-lg border">
<ListHistory :data="histories" :pagination-meta="paginationMeta" />
</div>
<DialogFooter></DialogFooter>
</DialogContent>
</Dialog>
</template>
+4
View File
@@ -9,7 +9,11 @@ export default defineNuxtConfig({
VCLAIM: process.env.NUXT_API_VCLAIM || 'http://localhost:3000',
public: {
API_ORIGIN: process.env.NUXT_API_ORIGIN || 'http://localhost:3000',
<<<<<<< HEAD
VCLAIM: process.env.NUXT_API_VCLAIM || 'http://localhost:3000',
=======
VCLAIM: process.env.NUXT_API_VCLAIM || 'http://localhost:3000',
>>>>>>> 22d163931e46c93ba5a466182d4a37b9f0aff85a
}
},
ssr: false,