mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 12:33:03 +00:00
add child level context menu
- more typescript
This commit is contained in:
@@ -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%;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user