Web: remove 'settings' view

It's not in use, and better to not have it at all then.
This commit is contained in:
Sybren A. Stüvel 2022-06-28 12:32:09 +02:00
parent c3345131c7
commit 37d8fbdf5e
2 changed files with 0 additions and 33 deletions

@ -20,11 +20,6 @@ const router = createRouter({
component: () => import('../views/WorkersView.vue'),
props: true,
},
{
path: '/settings',
name: 'settings',
component: () => import('../views/SettingsView.vue')
},
],
})

@ -1,28 +0,0 @@
<template>
<div class="col col-1">
Settings
</div>
<div class="col col-2">
More settings
</div>
<div class="col col-3">
Completely different settings
</div>
<footer>
No footer here.
</footer>
</template>
<script>
export default {
name: 'SettingsView',
components: {},
data: () => ({
}),
mounted() {
window.settingsView = this;
},
methods: {
},
}
</script>