Skip to content

Instantly share code, notes, and snippets.

View nulldreams's full-sized avatar
💊
Learning

Igor Souza Martins nulldreams

💊
Learning
View GitHub Profile
@nulldreams
nulldreams / Estados.vue
Last active June 5, 2024 20:53
VueJS - Select com todos os estados e cidades dinâmicas.
<template>
<b-container class="formulario">
<b-form>
<b-form-group label="Estados">
<b-form-select v-model="estado" :options="estados" class="mb-3"></b-form-select>
</b-form-group>
<b-form-group label="Cidade">
<b-form-select v-model="cidade" :options="cidades" class="mb-3"></b-form-select>