diff options
author | HampusM <hampus@hampusmat.com> | 2022-05-23 15:30:53 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-05-23 15:30:53 +0200 |
commit | 804f13402078a025924f5a42c479dd418f985112 (patch) | |
tree | 537975a99a83aa97abf34fc11ed27b269750febb /master/src/router | |
parent | 71a02201164597481b926a26ab1eaa1ee112f4ec (diff) |
feat(master): add display single minion temperature reading
Diffstat (limited to 'master/src/router')
-rw-r--r-- | master/src/router/index.ts | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/master/src/router/index.ts b/master/src/router/index.ts deleted file mode 100644 index df8090e..0000000 --- a/master/src/router/index.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { createRouter, createWebHashHistory, RouteRecordRaw } from 'vue-router' -import HomeView from '../views/HomeView.vue' - -const routes: Array<RouteRecordRaw> = [ - { - path: '/', - name: 'home', - component: HomeView - }, - { - path: '/about', - name: 'about', - // route level code-splitting - // this generates a separate chunk (about.[hash].js) for this route - // which is lazy-loaded when the route is visited. - component: () => import(/* webpackChunkName: "about" */ '../views/AboutView.vue') - } -] - -const router = createRouter({ - history: createWebHashHistory(), - routes -}) - -export default router |