update: base page to basic (no overview currently)

This commit is contained in:
Braks
2021-07-11 18:06:12 +02:00
parent 3f126f085e
commit 8f727a4d93

View File

@@ -18,7 +18,7 @@ const Header = defineComponent({
<select v-model={route.path} onChange={onChange}>
{routes.map((route) => (
<option value={route.path} key={route.path}>
{route.path === '/' ? 'overview' : route.path.substr(1, route.path.length)}
{route.path === '/' ? 'basic' : route.path.substr(1, route.path.length)}
</option>
))}
</select>