Rename Views to correspond to best practices

This commit is contained in:
Matthias 2023-04-13 06:35:06 +02:00
parent 7c01e0e5f9
commit 724e99d2ef
7 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@ const routes: Array<RouteRecordRaw> = [
{ {
path: '/', path: '/',
name: 'Home', name: 'Home',
component: () => import('@/views/Home.vue'), component: () => import('@/views/HomeView.vue'),
meta: { meta: {
allowAnonymous: true, allowAnonymous: true,
}, },
@ -13,7 +13,7 @@ const routes: Array<RouteRecordRaw> = [
{ {
path: '/trade', path: '/trade',
name: 'Freqtrade Trading', name: 'Freqtrade Trading',
component: () => import('@/views/Trading.vue'), component: () => import('@/views/TradingView.vue'),
}, },
{ {
path: '/graph', path: '/graph',
@ -28,12 +28,12 @@ const routes: Array<RouteRecordRaw> = [
{ {
path: '/backtest', path: '/backtest',
name: 'Freqtrade Backtest', name: 'Freqtrade Backtest',
component: () => import('@/views/Backtesting.vue'), component: () => import('@/views/BacktestingView.vue'),
}, },
{ {
path: '/dashboard', path: '/dashboard',
name: 'Freqtrade Dashboard', name: 'Freqtrade Dashboard',
component: () => import('@/views/Dashboard.vue'), component: () => import('@/views/DashboardView.vue'),
}, },
{ {
path: '/balance', path: '/balance',
@ -57,7 +57,7 @@ const routes: Array<RouteRecordRaw> = [
{ {
path: '/settings', path: '/settings',
name: 'Freqtrade Settings', name: 'Freqtrade Settings',
component: () => import('@/views/Settings.vue'), component: () => import('@/views/SettingsView.vue'),
}, },
{ {
path: '/login', path: '/login',