initialize settings page

This commit is contained in:
geoffrey45
2022-08-19 19:24:38 +03:00
parent dcd27921ae
commit 44bb30fe9f
19 changed files with 327 additions and 48 deletions
@@ -18,6 +18,7 @@
<script setup lang="ts">
import PlaylistSvg from "../../assets/icons/playlist.svg";
import FolderSvg from "../../assets/icons/folder.svg";
import SettingsSvg from "../../assets/icons/settings.svg";
const menus = [
{
@@ -31,6 +32,11 @@ const menus = [
params: { path: "$home" },
icon: FolderSvg,
},
{
name: "settings",
route_name: "SettingsView",
icon: SettingsSvg,
},
];
</script>