An open API service indexing awesome lists of open source software.

https://github.com/dabeng/vue-basics


https://github.com/dabeng/vue-basics

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# vue-basics
#### Difference between v-model and v-bind:value
```html

```
```html

```
So v-model is a two-way binding for form inputs. It combines v-bind, which brings a js value into the markup, and v-on:input to update the js value.

Use v-model when you can. Use v-bind/v-on when you must.

v-model [works with all the basic HTML input types](https://vuejs.org/v2/guide/forms.html) (text, textarea, number, radio, checkbox, select).