[Vuejs]-Get the path url of pop up and save it in a variable in current vue component

0👍

It would help to see more code, but try saving the url as data:

data() {
    return {
        popupUrl: 'https://example.com/123'
    }
}

You might also consider using a modal instead depending on the contents of your popup.

Leave a comment