mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-05 13:03:02 +00:00
Implement fuzzy page search using fuse.js (#86)
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<template>
|
||||
<div class="settings-nav">
|
||||
<SimpleTitle :text="'Settings'" />
|
||||
<Nav />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import SimpleTitle from "./SimpleTitle.vue";
|
||||
import Nav from "@/components/SettingsView/Nav.vue";
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.settings-nav {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr max-content;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user