feat: publish via dialog

This commit is contained in:
Anthony Fu 2022-11-24 16:04:53 +08:00
parent cd2a06e969
commit 83c0fafbec
9 changed files with 42 additions and 6 deletions

View file

@ -38,6 +38,11 @@ const transform = computed(() => {
return ''
}
})
let init = $ref(false)
watchOnce(modelValue, () => {
init = true
})
</script>
<template>
@ -55,7 +60,7 @@ const transform = computed(() => {
:class="positionClass"
:style="modelValue ? {} : { transform }"
>
<slot />
<slot v-if="init" />
</div>
</div>
</template>