Dynamic dropdown options
const response = await fetch('https://dog.ceo/api/breeds/list/all');
const dogs = await response.json();
// set the options to the keys of the returned object
DropdownDogs.options = Object.keys(dogs.message);Last updated
Was this helpful?