I am looking to display a different .vue file each time a visitor refreshes the Home page.
Currently, I only have one page called Home.vue. I am attempting to randomly load either Home1.vue or Home2.vue with each refresh.
{
path: '/',
name: 'home',
component: () => import('./views/Home.vue')
},
Perhaps I can have a single "homepage" but the entire content/template can be loaded randomly.
Is there anyone who can help me achieve this?