nextjs监听数据改变
warning:
这篇文章距离上次修改已过246天,其中的内容可能已经有所变动。
useEffect(() => {
if (defaultBrand && defaultBrand.length > 0) {
setVibe(defaultBrand); // Set default model to the first model of the default brand
} else {
setVibe("Random"); // Set default model to the first model of the default brand
}
}, [brandVibe]);