mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
feat: show search icon in header instead of input
+ fix: persistent updating text on update playlist modal
+ move router routes to a separate file
+ lazy import route components
+ remove loading: lazy from songcard
+ remove unused imports on navigation component
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<router-link :to="{ name: 'FolderView', params: { path: folder.path } }">
|
||||
<router-link :to="{ name: Routes.folder, params: { path: folder.path } }">
|
||||
<div class="f-item">
|
||||
<div class="icon">
|
||||
<FolderSvg v-if="!folder.is_sym" />
|
||||
@@ -16,8 +16,10 @@
|
||||
|
||||
<script setup lang="ts">
|
||||
import { Folder } from "@/interfaces";
|
||||
import FolderSvg from "../../assets/icons/folder.svg";
|
||||
import SymLinkSvg from "../../assets/icons/symlink.svg";
|
||||
import { Routes } from "@/composables/enums";
|
||||
|
||||
import FolderSvg from "@/assets/icons/folder.svg";
|
||||
import SymLinkSvg from "@/assets/icons/symlink.svg";
|
||||
|
||||
defineProps<{
|
||||
folder: Folder;
|
||||
|
||||
Reference in New Issue
Block a user