import { computed, defineComponent, ref, Transition } from 'vue' import { OhVueIcon, addIcons } from 'oh-vue-icons' import { MdClose, MdOpeninfull, MdClosefullscreen } from 'oh-vue-icons/icons' import useTomatoStore from '../useTomatoStore' addIcons(MdClose, MdOpeninfull, MdClosefullscreen) export default defineComponent( (props, ctx) => { const show = ref(false) const store = useTomatoStore() return () => (
{/* 背景遮罩 */} {props.show && (
{}}>
)}
{/* 弹框主体 */} {show.value && (
{/* 关闭按钮 */}
{ store.isOpenEditModal = '' }} >
{ctx.slots.default?.()}
)}
) }, { props: ['show'] } )