Vue.jsオブジェクトをjQueryのメソッド中で使う方法 : ユアマイスターアドベントカレンダー2018 の10日目の記事です。 this じゃダメ? Vue.jsとjQueryでこんなコードを書いたとして… sample.html <script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/vue@2.5.17/dist/vue.js"></script> <div id="app"> <button @click="testFunc"> click </button> </div> <script> var vm = new Vue({ el: '#app', data: { data: 'test', sum: 0 }, methods: { testFunc: function () { // 1 console.log(this); $.each([1, 2, 3], function (i, elm) { // 2 console.log(this); }); } } ...