Implement fuzzy page search using fuse.js (#86)

This commit is contained in:
Mungai Njoroge
2022-09-10 10:46:45 -04:00
committed by GitHub
parent befdf383b6
commit 5770a66d67
67 changed files with 568 additions and 558 deletions
@@ -1,28 +0,0 @@
<template>
<div
class="p-card new-playlist-card rounded"
@click="Modal.showNewPlaylistModal()"
>
<PlusSvg />
</div>
</template>
<script setup lang="ts">
import PlusSvg from "../../assets/icons/plus.svg";
import useModalStore from "../../stores/modal";
const Modal = useModalStore();
</script>
<style lang="scss">
.new-playlist-card {
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
svg {
transform: scale(3);
}
}
</style>