包详细信息

v-click-away

maxjparker15MIT0.0.3

another vue3 clickaway directive

v-click-away, vue, vue3, click-away

自述文件

Intro

Yep. Yet another Vue click-away directive.

Install

npm i v-click-away

Usage

<MyModal :open="isModalOpen" v-click-away="isModalOpen = false">
  ...
</MyModal>

If an element that triggers the modal to open is not a child of the modal, sometimes the modal won't open because clicking the open triggers it to close! In this scenario, use the directive's arg to select a trigger element (by id):

<button id="button-id">Open Modal</button>
<MyModal :open="isModalOpen" v-click-away:['button-id']="isModalOpen = false">
  ...
</MyModal>