Vrda's picture
Deploy Learn Pathophysiology WC3 Edition
8b9f7d9
import { Directive } from 'vue';
export const vVisible: Directive = {
mounted: (el, binding) => el.style.visibility = !!binding.value ? 'visible' : 'hidden',
}