mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
29 lines
490 B
Vue
29 lines
490 B
Vue
<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>
|