20 lines
447 B
Vue
20 lines
447 B
Vue
<script setup>
|
|
import xPopup from '@/components/x-popup/index.vue'
|
|
import ItemDetail from "@/components/itemDetail/index.vue";
|
|
const props = defineProps({
|
|
show: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
})
|
|
|
|
const emit = defineEmits(['update:show'])
|
|
const handleClose = () => {
|
|
emit('update:show', false)
|
|
}
|
|
</script>
|
|
<template>
|
|
<xPopup :show="show" title="拍品详情" @update:show="handleClose">
|
|
<ItemDetail />
|
|
</xPopup>
|
|
</template> |