JSFiddle - React, Tailwind, and code Playground
HTML
<div id="vue">
<form>
<input id="username" type="username" v-model="user.username">
<input id="password" type="password" v-model="user.password">
<button type="submit">Submit</button>
</form>
{{user}}
</div>
JavaScript
new Vue({
el:'#vue',
data:{
user:{
username:'',
password:''
}
}
})