formatting

This commit is contained in:
2023-10-27 15:09:48 -05:00
parent 587e273435
commit 96a2b74fa7
8 changed files with 22 additions and 29 deletions

View File

@@ -1,5 +1,5 @@
import { createRouter, createWebHistory } from "vue-router";
import { routerBase } from '../app.config.js';
import { routerBase } from "../app.config.js";
import HomeView from "../views/HomeView.vue";
import AboutView from "../views/AboutView.vue";
import DebugFrameView from "../views/DebugFrameView.vue";
@@ -44,7 +44,7 @@ const routes = [
},
{
path: "/telephonyContext",
name: "customerAccount",
name: "telephonyContext",
components: { default: CustomerAccountView },
props: {
default: (route) => ({
@@ -63,7 +63,7 @@ const routes = [
},
];
console.log(`mounting router on ${routerBase}`)
console.log(`mounting router on ${routerBase}`);
const router = createRouter({
history: createWebHistory(),