1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-11 19:53:59 +02:00

Add formatting so the HTML elements don't get rendered (#7157)

The <input> <textarea> and <select> elements are attempted to be rendered by the browser so they aren't visible as text
This commit is contained in:
stuartrace
2024-09-18 15:37:28 +01:00
committed by GitHub
parent 84184724c4
commit 4f01c51232

View File

@@ -1,5 +1,5 @@
# v-model # v-model
The v-model directive in Vue.js is used for creating two-way data bindings on form input elements, such as <input>, <textarea>, and <select>. This means that the data can be updated in the component when the user inputs something, and the UI will update if the data in the component changes. The v-model directive in Vue.js is used for creating two-way data bindings on form input elements, such as `<input>`, `<textarea>`, and `<select>`. This means that the data can be updated in the component when the user inputs something, and the UI will update if the data in the component changes.
- [@article@Form Input Bindings](https://vuejs.org/guide/essentials/forms.html) - [@article@Form Input Bindings](https://vuejs.org/guide/essentials/forms.html)