updated core-js

This commit is contained in:
2022-11-06 00:16:29 +01:00
parent e33614862e
commit befc14d894
27 changed files with 4504 additions and 7635 deletions

View File

@@ -17,7 +17,7 @@ const routes = [
path: '/',
name: 'Home',
components: {
main: lazyLoadView('Home')
main: lazyLoadView('HomeView')
}
},
{
@@ -31,14 +31,14 @@ const routes = [
path: '/matches',
name: 'Explore',
components: {
main: lazyLoadView('Explore')
main: lazyLoadView('ExploreView')
}
},
{
path: '/player/:id',
name: 'Player',
components: {
main: lazyLoadView('Player'),
main: lazyLoadView('PlayerView'),
},
props: true
},
@@ -46,7 +46,7 @@ const routes = [
path: '/match/:match_id',
name: 'Match',
components: {
main: lazyLoadView('Match')
main: lazyLoadView('MatchView')
},
props: true,
children: [
@@ -65,7 +65,7 @@ const routes = [
{
path: 'details',
components: {
score: lazyLoadComponent('Details')
score: lazyLoadComponent('CompDetails')
}
},
{
@@ -92,21 +92,21 @@ const routes = [
path: '/404',
name: '404',
components: {
main: lazyLoadErrorPages('404')
main: lazyLoadErrorPages('Error404')
}
},
{
path: '/500',
name: '500',
components: {
main: lazyLoadErrorPages('500')
main: lazyLoadErrorPages('Error500')
}
},
{
path: '/502',
name: '502',
components: {
main: lazyLoadErrorPages('502')
main: lazyLoadErrorPages('Error502')
}
},
{