Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
d50c1eb
added translatiton to guide/forms page
LucasFlaquer Sep 17, 2020
2570d72
++
LucasFlaquer Sep 17, 2020
f283cbb
fix: closed span tags, close #489
NataliaTepluhina Sep 17, 2020
1dafa6b
Merge branch 'master' of github.com:vuejs/docs-next
NataliaTepluhina Sep 17, 2020
88e045c
tip note translated
LucasFlaquer Sep 18, 2020
8235a0d
docs: final polish for migration guide
yyx990803 Sep 18, 2020
7e55600
docs: links to migration guide + update navbar ecosystem links
yyx990803 Sep 18, 2020
c05b8e6
Note that props can be accessed in template directly (#487)
garyo Sep 18, 2020
190ab87
docs: update watch behavior adjustments
yyx990803 Sep 18, 2020
bb8dac4
docs: more tweaks on watch flush timing
yyx990803 Sep 18, 2020
93b501a
docs: mendtion vetur in migration guide
yyx990803 Sep 18, 2020
0ae5b64
fix: introduce the wrapper object to the props default example (#492)
skirtles-code Sep 18, 2020
cf59d27
Include tiny-emitter in events API migration strategy (#494)
yuripave Sep 18, 2020
dec96b3
docs: added video explanation links for Vue 3 (#312)
Gregg Sep 18, 2020
3341528
docs: add Vue 3 video lessons (#490)
rahaug Sep 18, 2020
8d8d190
docs: update video styles (#495)
bencodezen Sep 18, 2020
70c1e83
docs: update menu and migration guides
bencodezen Sep 18, 2020
bcaaf80
codepen links translated
LucasFlaquer Sep 18, 2020
108ffdc
correction fo some links
LucasFlaquer Sep 18, 2020
df70f14
fix: `introduction.md`: `notable-new-features` anchor in TOC (#497)
ErichDonGubler Sep 19, 2020
8c7a5e2
Update v-bind.md to complete the incomplete sentence (#500)
saurabhdaware Sep 19, 2020
c281bb8
Remove duplicate words in Global API Treeshaking (#501)
kidonng Sep 19, 2020
f558bf6
feat: added VueMastery modal to introduction
NataliaTepluhina Sep 19, 2020
b3a53a2
fix: fixed link to unwrapping; close #502
NataliaTepluhina Sep 19, 2020
1273ac4
Fixes "Hook inside `setup`" grammar (#503)
cathrinevaage Sep 19, 2020
3a6cb58
fix: style fixes to migration guide
NataliaTepluhina Sep 19, 2020
cdc142d
Merge branch 'master' of github.com:vuejs/docs-next
NataliaTepluhina Sep 19, 2020
fa5472a
Add usage examples for Asset Options (#283)
CyberAP Sep 19, 2020
185d076
fix: removed unnecessary sentence
NataliaTepluhina Sep 19, 2020
37ba7d2
fix: Change the options object: remove the `retryWhen`, `maxRetries` …
zhenzhenChange Sep 19, 2020
828768e
added translatiton to guide/forms page
LucasFlaquer Sep 17, 2020
2e73fee
++
LucasFlaquer Sep 17, 2020
45f94e7
tip note translated
LucasFlaquer Sep 18, 2020
eeb4de3
codepen links translated
LucasFlaquer Sep 18, 2020
bb91c7c
correction fo some links
LucasFlaquer Sep 18, 2020
42376ed
Merge branch 'master' of https://github.com/LucasFlaquer/docs-next
LucasFlaquer Sep 19, 2020
2d5f3a7
added correct links to codepen
LucasFlaquer Sep 19, 2020
d18ce31
Merge branch 'master' of https://github.com/LucasFlaquer/docs-next
LucasFlaquer Sep 19, 2020
a1419cd
Revert "Merge branch 'master' of https://github.com/LucasFlaquer/docs…
LucasFlaquer Sep 19, 2020
ea191ad
reverting commits
LucasFlaquer Sep 23, 2020
93ff8e1
Revert "Merge branch 'master' of github.com:vuejs/docs-next"
LucasFlaquer Sep 24, 2020
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
tip note translated
  • Loading branch information
LucasFlaquer committed Sep 19, 2020
commit 45f94e7860c0ec4f437cc2321a3c193dda98dd26
2 changes: 1 addition & 1 deletion src/guide/forms.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Você pode usar a diretiva `v-model` para criar interligações de dados de mão dupla (two-way data binding) em elementos input, textarea e select de formulários. Ele automaticamente escolhe a maneira correta de atualizar o elemento baseado no tipo do *input*. Embora um pouco mágico, `v-model` é essencialmente uma forma simplificada(syntax sugar) para atualizar dados nos eventos de entrada do usuário, além de cuidado especial com casos extremos.

::: tip Nota
`v-model` will ignore the initial `value`, `checked` or `selected` attributes found on any form elements. It will always treat the current active instance data as the source of truth. You should declare the initial value on the JavaScript side, inside the `data` option of your component.
`v-model` irá ignorar o estado inicial dos atributos `value`, `checked` ou `selected` encontrado em qualquer elemento de formulário. Ele sempre irá tratar os dados da instância ativa com a fonte de verdade. Você pode declarar o valor inicial no lado do JavasScript, dentro da opção `data` do seu componente.
:::

`v-model` utiliza diferentes propriedades internamente e emite diferentes eventos para diferentes elementos input:
Expand Down