add child level context menu

- more typescript
This commit is contained in:
geoffrey45
2022-03-16 01:21:53 +03:00
parent f11005e523
commit 29124ce717
14 changed files with 209 additions and 82 deletions
+1 -1
View File
@@ -8,7 +8,7 @@
.play-btn {
width: 2rem;
height: 2rem;
background-color: $red;
background-color: $accent;
background-image: url("../../assets/icons/play.svg");
background-size: 1.25rem;
background-position: 60%;
+2 -4
View File
@@ -63,9 +63,9 @@
<script setup lang="ts">
import perks from "../../composables/perks.js";
import state from "../../composables/state";
import useContextStore from "../../stores/context.js";
import useContextStore from "../../stores/context";
import { ref } from "vue";
import trackContext from "../../composables/track_context";
import trackContext from "../../contexts/track_context";
import { Track } from "../../interfaces.js";
const contextStore = useContextStore();
@@ -108,8 +108,6 @@ const current = state.current;
</script>
<style lang="scss">
//
.songlist-item {
display: grid;
align-items: center;
+2 -2
View File
@@ -38,8 +38,8 @@
import { ref } from "vue";
import perks from "../../composables/perks";
import playAudio from "../../composables/playAudio";
import useContextStore from "@/stores/context.js";
import trackContext from "../../composables/track_context";
import useContextStore from "@/stores/context";
import trackContext from "../../contexts/track_context";
const contextStore = useContextStore();
const context_on = ref(false);