rename page components

This commit is contained in:
Simon Vieille 2023-02-26 16:49:19 +01:00
parent 2ccdb30e8c
commit d35527ef3b
Signed by: deblan
GPG key ID: 579388D585F70417
3 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
import { createRouter, createWebHashHistory } from 'vue-router' import { createRouter, createWebHashHistory } from 'vue-router'
import Home from './page/Home.vue' import HomePage from './page/HomePage.vue'
import About from './page/About.vue' import AboutPage from './page/AboutPage.vue'
// const APP_BASE_URL = '/' // const APP_BASE_URL = '/'
@ -8,7 +8,7 @@ const routes = [
{ {
path: '/', path: '/',
name: 'home', name: 'home',
component: Home, component: HomePage,
meta: { meta: {
title: 'Generator - OG:IMAGE' title: 'Generator - OG:IMAGE'
} }
@ -16,7 +16,7 @@ const routes = [
{ {
path: '/about', path: '/about',
name: 'About', name: 'About',
component: About, component: AboutPage,
meta: { meta: {
title: 'About' title: 'About'
} }