Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaotarzan committed Mar 6, 2024
1 parent 23e5f26 commit d7eef26
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,16 @@ const linguagens = reactive([
])
const pessoa = reactive({
Nome: '',
Idade: 18,
Email: '',
Senha: '',
Estado: '',
Cidade: '',
Endereco: '',
Hobbies: [],
Linguagens: [],
Biografia: ''
nome: '',
idade: 18,
email: '',
senha: '',
estado: '',
cidade: '',
endereco: '',
hobbies: [],
linguagens: [],
biografia: ''
})
const show = ref(false)
Expand Down Expand Up @@ -168,7 +168,7 @@ function EnviarDados() {
<div class="opcao-checkbox" v-for="linguagem in linguagens" :key="linguagem.id">
<input
type="checkbox"
name="hobbies"
:name="linguagem.id"
:value="linguagem.tipo"
v-model="pessoa.linguagens"
/>
Expand Down

0 comments on commit d7eef26

Please sign in to comment.