[Vuejs]-Display titles of different cards in vuetify

1👍

Your click handler needs to do 2 things: Set the album and show the dialog.

  1. add selectedAlbum:null to your data
  2. to open the dialog on click, set selectedAlbum = album
  3. set the dialog model to !!selectedAlbum, to only show when album is set
  4. use selectedAlbum instead of album in your dialog
  5. To close set selectedAlbum to null

Leave a comment