add Language component

This commit is contained in:
Milos Holba
2021-02-21 12:09:24 +01:00
parent 67cf7a6ced
commit 9a1a9ee206
13 changed files with 1073 additions and 69 deletions
+11
View File
@@ -284,6 +284,17 @@ const routesAdmin = [
},
]
},
{
name: 'Language',
path: '/admin/language',
component: () =>
import(/* webpackChunkName: "chunks/app-language" */ './views/Admin/Languages/Language'),
meta: {
requiresAuth: true,
title: i18n.t('routes_title.language')
},
}
]
},
{