chore(deps): remove unused deps

* update deps
* some ts fixes
This commit is contained in:
Braks
2021-10-20 22:39:54 +02:00
parent 17f2517ab4
commit 6cfe5f6d43
9 changed files with 209 additions and 247 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ const onChange = (event: any) => {
<header>
<a class="logo" href="https://github.com/bcakmakoglu/revue-flow"> Revue Flow Dev </a>
<select v-model="route.path" @change="onChange">
<template v-for="(r, i) of routes" :key="`route-${i}`">
<template v-for="r of routes" :key="r.path">
<option v-if="r.path !== '/'" :value="r.path">
{{ r.path.substr(1, r.path.length) }}
</option>