This works: `<input type="text" value="{{ r.value }}" @keyup="updateValue | debounce 500">` But this does not: `<input type="text" value="{{ r.value }}" @keyup="updateValue('test', $event) | debounce 500">` The <b>test</b> inline parameter will display but the <b>$event</b> variable is null. If I remove the debounce filter it will function as expected.