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 / default.conf
Created June 20, 2018 19:40
NGiNX Configuration for Vue-Router in HTML5 Mode
server {
listen 80 default_server;
listen [::]:80 default_server;
root /your/root/path;
index index.html;
server_name you.server.com;
@nulldreams
nulldreams / Estados.vue
Last active November 16, 2023 18:31
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>