JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://unpkg.com/vue"></script>
<div id="app">
<input :type="showPassword ? 'text' : 'password'" v-model="showPassword ? text : abc">
<button @click="showPassword = !showPassword">
Toggle
</button>
{{text}}
{{abc}}
</div>
JavaScript
new Vue({
el: '#app',
data: {
showPassword: true,
text: '123456',
abc:'111'
}
})