nextjs监听数据改变
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]);