13 lines
246 B
JavaScript
13 lines
246 B
JavaScript
import Match3Game from '../views/minigames/Match3Game.vue';
|
|
|
|
const minigamesRoutes = [
|
|
{
|
|
path: '/minigames/match3',
|
|
name: 'Match3Game',
|
|
component: Match3Game,
|
|
meta: { requiresAuth: true }
|
|
}
|
|
];
|
|
|
|
export default minigamesRoutes;
|