style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-04-24 07:45:57 +00:00
parent 5b9b939c0b
commit b9d967003e

View file

@ -13,7 +13,7 @@ import { useI18n } from "vue-i18n";
icon?: string; icon?: string;
}>(); }>();
const routerLink = computed(() => props.isAbsolutePath ? props.path : `/theme/${props.path}`); const routerLink = computed(() => (props.isAbsolutePath ? props.path : `/theme/${props.path}`));
</script> </script>
<template> <template>
@ -35,7 +35,8 @@ import { useI18n } from "vue-i18n";
<v-icon <v-icon
v-if="icon" v-if="icon"
class="title-image" class="title-image"
>{{ icon }}</v-icon> >{{ icon }}</v-icon
>
<span class="title">{{ title }}</span> <span class="title">{{ title }}</span>
</v-card-title> </v-card-title>