Vue개발하다 보면 한글이 v-model 바인드시 짤리는 문제가 있었다..
인터넷을 찾아 아래와 같이 해결
<input type="text" v-model="name" @keyup="schName($event)">
methods: {
,schName: function(e){
this.name= e.target.value;
});
}
반응형
'Javascript > Vue' 카테고리의 다른 글
Vscode+eslink settings.json 설정 (0) | 2021.03.20 |
---|---|
vscode ..potentially fixable with the `--fix` option. 오류 (0) | 2021.03.20 |
Custom elements in iteration require 'v-bind:key' directives. 오류 처리 (0) | 2021.02.05 |