added demo page with button redirection

(cherry picked from commit 37cc94aeda)
This commit is contained in:
Čarodej
2022-05-03 10:48:31 +02:00
parent 3b6391a74b
commit a9aa9195a3
6 changed files with 120 additions and 43 deletions
+12
View File
@@ -0,0 +1,12 @@
const routesIndex = [
{
name: 'Demo',
path: '/demo',
component: () => import(/* webpackChunkName: "chunks/demo" */ '../views/Demo'),
meta: {
requiresAuth: false,
},
},
]
export default routesIndex