Skip to content

Commit

Permalink
Update vuePluginManager: remove non-working update hook for v-focus
Browse files Browse the repository at this point in the history
  • Loading branch information
sabicalija committed Dec 2, 2024
1 parent 7e17f69 commit 628e987
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/js/vue/vuePluginManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@ function initDirectives() {
if (el.focus) el.focus();
if (el.select) el.select();
}
},
updated: function (el, binding) {
if (binding.value) {
if (el.focus) el.focus();
if (el.select) el.select();
}
}
});
Vue.directive('debounce', {
Expand Down

0 comments on commit 628e987

Please sign in to comment.