changed some style
This commit is contained in:
@@ -8,7 +8,9 @@ const route = useRoute();
|
||||
// computed
|
||||
|
||||
const pageTitle = computed(() => route.meta.pageTitle);
|
||||
const prevPage = computed(() => route.meta.prevPage as { name: string, label: string } | undefined);
|
||||
const prevPage = computed(
|
||||
() => route.meta.prevPage as { name: string; label: string } | undefined
|
||||
);
|
||||
|
||||
// queries
|
||||
|
||||
@@ -47,9 +49,9 @@ const hasCartItem = computed(
|
||||
>
|
||||
<Icon
|
||||
name="bi:arrow-right"
|
||||
class="**:stroke-cyan-400"
|
||||
class="**:stroke-blue-500"
|
||||
/>
|
||||
<span class="text-cyan-400">
|
||||
<span class="text-blue-500">
|
||||
{{ prevPage?.label }}
|
||||
</span>
|
||||
</NuxtLink>
|
||||
|
||||
Reference in New Issue
Block a user