[Vuejs]-Sending variables from one view to another view and url in vue

0👍

You can add an @click event to the image and programmatically move the user to the new URL when they click on the image. Something like:

  <imge src="..." @click="$router.push(`/event/${event.title}`)" />

Leave a comment