Vue.js @blurでフォーカスが外れたイベントを取得するサンプル
環境
Windows 10 Home 64bit
Vue.js 5.0.8
Google Chrome 108.0.5359.125(Official Build) (64 ビット)
yarn 1.22.19
構文
1.@blur="イベント名1″
v-on:blur="イベント名1″
イベント名1: function () {処理コード}
@blurを使ってフォーカスされたイベントを取得します。
2.@focus="イベント名2″
イベント名2: function () {処理コード}
@focusを使ってフォーカスが外れたイベントを取得します。
使用例
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>dragleaveイベントサンプル</title> <script src="https://unpkg.com/vue@next"></script> </head> <body> <div id="app" > <h2 >{{val}}</h2> <form> <input @blur="cftA" @focus="cftB"> </form> </div> <script> const hoge = { data() { return { val: '' } }, methods: { cftA: function () { this.val = 'マウスフォーカスが外れました' }, cftB: function () { this.val = 'マウスフォーカスされました' } } } Vue.createApp(hoge).mount('#app') </script> </body> </html>
実行結果
テキストフォームにフォーカスをあてると「マウスフォーカスされました」と、フォーカスが外れると「マウスフォーカスが外れました」と表示します。