标签(空格分隔): Vue 自定义指令用于过滤输入框,只允许输入数字: Vue.directive('numberOnly', { bind: function (el, binding) { el.handler = function () { el.value = el.value.replace(/[^\d]/g, ''); } el.addEventListener('input', el.handler); }, unbind: function (el) { el.removeEve