0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Vuetifly:Dialog】オーバーレイを押してモーダルを非表示

Last updated at Posted at 2022-09-30

オーバーレイを押してモーダルを非表示にする

VuetiflyでOverlayを押した時にモーダルを削除する方法

発生したエラー

dialogをtrueにしてモーダルを表示してオーバーレイを押すとエラーが発生する
スクリーンショット 2021-11-14 19.16.39.png

解決策

リファレンスに書いてある
https://vuetifyjs.com/ja/api/v-dialog/#events-click:outside

**click:outside : **アクティブなダイアログの外側をクリックしたときに発生するイベント

使い方

子
<v-dialog v-model="this.dialog" @click:outside="dailogStateChange">
     ~~~~~~~~~~~~~~
</v-dialog>
methods: {
  dailogStateChange() {
    this.$emit('dailogStateChange');
  },
}

親
methods: {
  dailogStateChange() {
    this.dialog = !this.dialog;
  },
}

または

<v-dialog v-model="this.dialog" @click:outside="!this.dialog">
     ~~~~~~~~~~~~~~
</v-dialog>

後者の方が楽ちんだけど
子では親のデータを更新できないので臨機応変に対応する

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?