My '/' path redirect to '/loading' and I need to pass props like mysite/?demo=true and then that prop pass to the component attached to '/loading'
this is the router config
{
path: '/',
redirect: '/loading',
},
{
path: '/loading',
component: Loading
},