We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52bf220 commit 18d5303Copy full SHA for 18d5303
components/Layout/LayoutCart.vue
@@ -37,7 +37,7 @@
37
{{ cartLength }}
38
</span>
39
<span class="text-white lg:text-black"
40
- >Total: {{ config.currencySymbol }} {{ subTotal }}</span
+ >Total: {{ config.public.currencySymbol }} {{ subTotal }}</span
41
>
42
</div>
43
</transition>
components/Products/ProductImage.vue
@@ -17,6 +17,6 @@ const props = defineProps({
17
const config = useRuntimeConfig();
18
19
const displayedImage = computed(() => {
20
- return props.src || config.placeholderImage;
+ return props.src || config.public.placeholderImage;
21
});
22
</script>
0 commit comments