[Vuejs]-How to add html text after a v-bind directive on a placeholder element in Vue.Js?

0👍

I don’t have access to Safari but did you try adding an empty placeholder? Before the v-bind.

<input autocomplete='off' type="text" ref="inputPlaceholderUser" placeholder="" v-bind:placeholder='user.name'>

Leave a comment