Skip to content

Commit

Permalink
More pages
Browse files Browse the repository at this point in the history
  • Loading branch information
mecha-cat committed May 4, 2024
1 parent 906c71c commit 0ab2321
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 22 deletions.
22 changes: 16 additions & 6 deletions src/router/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,42 @@ const settings: Array<RouteRecordRaw> = [
{
path: '/options/system',
name: 'System',
component: (await import("../views/options/System.vue")).default,
component: () => import("../views/options/System.vue"),
},
{
path: '/options/front_history',
name: 'Front History',
component: (await import("../views/options/FrontHistory.vue")).default,
component: () => import("../views/options/FrontHistory.vue"),
},
{
path: '/options/message_board',
name: 'Message Board',
component: (await import("../views/options/MessageBoard.vue")).default,
component: () => import("../views/options/MessageBoard.vue"),
},
{
path: '/options/tag_management',
name: 'Message Board',
component: (await import("../views/options/TagManagement.vue")).default,
component: () => import("../views/options/TagManagement.vue"),
},
{
path: '/options/reminders',
name: 'Reminders',
component: (await import("../views/options/Reminders.vue")).default,
component: () => import("../views/options/Reminders.vue"),
},
{
path: '/options/app_settings',
name: 'App Settings',
component: () => import("../views/options/AppSettings.vue"),
},
{
path: '/options/security',
name: 'Security',
component: () => import("../views/options/Security.vue"),
},
{
path: '/options/accessibility',
name: 'Accessibility',
component: (await import("../views/options/Accessibility.vue")).default,
component: () => import("../views/options/Accessibility.vue"),
},
{
path: '/options/about',
Expand Down
4 changes: 2 additions & 2 deletions src/views/options/Accessibility.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<script setup lang="ts">
import { IonContent, IonHeader, IonList, IonPage, IonTitle, IonToolbar, IonNavLink, IonBackButton} from '@ionic/vue';

Check failure on line 2 in src/views/options/Accessibility.vue

View workflow job for this annotation

GitHub Actions / deploy

'IonNavLink' is declared but its value is never read.
import { computed } from 'vue';
import { isIOSMode } from '../../lib/util/misc';
import { isIOSIonicMode } from '../../lib/mode';
const isIOS = computed(isIOSMode);
const isIOS = computed(isIOSIonicMode);
</script>

<template>
Expand Down
4 changes: 2 additions & 2 deletions src/views/options/AppSettings.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<script setup lang="ts">
import { IonContent, IonHeader, IonList, IonPage, IonTitle, IonToolbar, IonNavLink, IonBackButton} from '@ionic/vue';

Check failure on line 2 in src/views/options/AppSettings.vue

View workflow job for this annotation

GitHub Actions / deploy

'IonNavLink' is declared but its value is never read.
import { computed } from 'vue';
import { isIOSMode } from '../../lib/util/misc';
import { isIOSIonicMode } from '../../lib/mode';
const isIOS = computed(isIOSMode);
const isIOS = computed(isIOSIonicMode);
</script>

<template>
Expand Down
4 changes: 2 additions & 2 deletions src/views/options/FrontHistory.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<script setup lang="ts">
import { IonContent, IonHeader, IonList, IonPage, IonTitle, IonToolbar, IonNavLink, IonBackButton} from '@ionic/vue';

Check failure on line 2 in src/views/options/FrontHistory.vue

View workflow job for this annotation

GitHub Actions / deploy

'IonNavLink' is declared but its value is never read.
import { computed } from 'vue';
import { isIOSMode } from '../../lib/util/misc';
import { isIOSIonicMode } from '../../lib/mode';
const isIOS = computed(isIOSMode);
const isIOS = computed(isIOSIonicMode);
</script>

<template>
Expand Down
4 changes: 2 additions & 2 deletions src/views/options/MessageBoard.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<script setup lang="ts">
import { IonContent, IonHeader, IonList, IonPage, IonTitle, IonToolbar, IonNavLink, IonBackButton} from '@ionic/vue';

Check failure on line 2 in src/views/options/MessageBoard.vue

View workflow job for this annotation

GitHub Actions / deploy

'IonNavLink' is declared but its value is never read.
import { computed } from 'vue';
import { isIOSMode } from '../../lib/util/misc';
import { isIOSIonicMode } from '../../lib/mode';
const isIOS = computed(isIOSMode);
const isIOS = computed(isIOSIonicMode);
</script>

<template>
Expand Down
4 changes: 2 additions & 2 deletions src/views/options/Reminders.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<script setup lang="ts">
import { IonContent, IonHeader, IonList, IonPage, IonTitle, IonToolbar, IonNavLink, IonBackButton} from '@ionic/vue';

Check failure on line 2 in src/views/options/Reminders.vue

View workflow job for this annotation

GitHub Actions / deploy

'IonNavLink' is declared but its value is never read.
import { computed } from 'vue';
import { isIOSMode } from '../../lib/util/misc';
import { isIOSIonicMode } from '../../lib/mode';
const isIOS = computed(isIOSMode);
const isIOS = computed(isIOSIonicMode);
</script>

<template>
Expand Down
4 changes: 2 additions & 2 deletions src/views/options/Security.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<script setup lang="ts">
import { IonContent, IonHeader, IonList, IonPage, IonTitle, IonToolbar, IonNavLink, IonBackButton} from '@ionic/vue';

Check failure on line 2 in src/views/options/Security.vue

View workflow job for this annotation

GitHub Actions / deploy

'IonNavLink' is declared but its value is never read.
import { computed } from 'vue';
import { isIOSMode } from '../../lib/util/misc';
import { isIOSIonicMode } from '../../lib/mode';
const isIOS = computed(isIOSMode);
const isIOS = computed(isIOSIonicMode);
</script>

<template>
Expand Down
4 changes: 2 additions & 2 deletions src/views/options/System.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<script setup lang="ts">
import { IonContent, IonHeader, IonList, IonPage, IonTitle, IonToolbar, IonNavLink, IonBackButton} from '@ionic/vue';

Check failure on line 2 in src/views/options/System.vue

View workflow job for this annotation

GitHub Actions / deploy

'IonNavLink' is declared but its value is never read.
import { computed } from 'vue';
import { isIOSMode } from '../../lib/util/misc';
import { isIOSIonicMode } from '../../lib/mode';
const isIOS = computed(isIOSMode);
const isIOS = computed(isIOSIonicMode);
</script>

<template>
Expand Down
4 changes: 2 additions & 2 deletions src/views/options/TagManagement.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<script setup lang="ts">
import { IonContent, IonHeader, IonList, IonPage, IonTitle, IonToolbar, IonNavLink, IonBackButton} from '@ionic/vue';

Check failure on line 2 in src/views/options/TagManagement.vue

View workflow job for this annotation

GitHub Actions / deploy

'IonNavLink' is declared but its value is never read.
import { computed } from 'vue';
import { isIOSMode } from '../../lib/util/misc';
import { isIOSIonicMode } from '../../lib/mode';
const isIOS = computed(isIOSMode);
const isIOS = computed(isIOSIonicMode);
</script>

<template>
Expand Down

0 comments on commit 0ab2321

Please sign in to comment.