Multiple modal instances on vue #1016
Unanswered
dreadlord12318
asked this question in
Help
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello I can't seem to make multiple unique modals to work on my vue page..since I want multiple modals with unique content on my page I made this code to open 2 modals for testing but every time I try to run it it will only open the last one (hello2)
` setup() {
const isOpen = ref(false)
const isOpen2 = ref(false)
},
}`
Is there a way to show multiple unique content modals on a vue page just like on normal html/php page?
Beta Was this translation helpful? Give feedback.
All reactions