MuzMatch
MuzMatch
NNuxt
Created by MuzMatch on 10/6/2024 in #❓・help
CSS being carried to a different page that uses a different layout
Ooh the useHead thing is good! Thanks
6 replies
NNuxt
Created by MuzMatch on 10/6/2024 in #❓・help
CSS being carried to a different page that uses a different layout
Ive had to just make the login layout positioned absolutely and take up the whole viewport. Not something I wanted to do but I think that's the most simple way of doing this
6 replies
NNuxt
Created by MuzMatch on 9/28/2024 in #❓・help
Can't validate SelectMenu or UInputMenu NuxtUI components using Yup
Can anyone help?
4 replies
NNuxt
Created by MuzMatch on 9/28/2024 in #❓・help
Can't validate SelectMenu or UInputMenu NuxtUI components using Yup
So looks like the values are being updated correctly
4 replies
NNuxt
Created by MuzMatch on 9/28/2024 in #❓・help
Can't validate SelectMenu or UInputMenu NuxtUI components using Yup
I did this:
watch(() => listing.value.product.productTypeId, (newVal) => {
console.log('Product Type ID:', newVal);
});

watch(() => listing.value.duration, (newVal) => {
console.log('Duration:', newVal);
});
watch(() => listing.value.product.productTypeId, (newVal) => {
console.log('Product Type ID:', newVal);
});

watch(() => listing.value.duration, (newVal) => {
console.log('Duration:', newVal);
});
and the console output was Product Type ID: cm0a9ct9y0005jpv8lelkzlx5 Duration: 3
4 replies