implements single URL archiving

This commit is contained in:
msramalho
2024-10-30 15:58:57 +00:00
parent bf151ff92e
commit 42fa376f7d
12 changed files with 594 additions and 59 deletions

View File

@@ -1,6 +1,7 @@
import { createRouter, createWebHistory } from 'vue-router';
import HomeView from '../views/HomeView.vue';
import SheetView from '../views/SheetView.vue';
import UrlView from '../views/UrlView.vue';
const routes = [
{
@@ -10,9 +11,14 @@ const routes = [
},
{
path: '/sheets',
name: 'sheets',
name: 'Google Sheets Archiving',
component: SheetView,
},
{
path: '/urls',
name: 'URL Archiving',
component: UrlView,
},
{
path: '/privacy',
name: 'Privacy Policy',