Ray
Ray
NNuxt
Created by Ray on 8/3/2024 in #❓・help
[nuxt] Your project has layouts but the `<NuxtLayout />` component has not been used.
@Cake any suggestions about how to fix the above
4 replies
NNuxt
Created by Ray on 8/3/2024 in #❓・help
[nuxt] Your project has layouts but the `<NuxtLayout />` component has not been used.
The main logic is something like this: Should I call fetch settings outside of onMounted?
onMounted(() => {
// Fetch settings on load
fetchSettings()
})

// Function to fetch settings from the API using SettingsService
const fetchSettings = async () => {
settingsWrapper.isLoading = true
try {
settingsWrapper.settings = await settingService.getSettings()
onMounted(() => {
// Fetch settings on load
fetchSettings()
})

// Function to fetch settings from the API using SettingsService
const fetchSettings = async () => {
settingsWrapper.isLoading = true
try {
settingsWrapper.settings = await settingService.getSettings()
4 replies