Fix linting errors

Remove parentheses and add trailing comma.
This commit is contained in:
Ian Oxley
2018-11-24 17:12:12 +00:00
parent 5a30b0cf1f
commit 08c6e8298c

View File

@@ -67,8 +67,8 @@ export default {
return this.isDropdownOpen; return this.isDropdownOpen;
}, },
isPressed () { isPressed () {
return (this.isOpen ? 'true' : 'false'); return this.isOpen ? 'true' : 'false';
} },
}, },
mounted () { mounted () {
document.documentElement.addEventListener('click', this._clickOutListener); document.documentElement.addEventListener('click', this._clickOutListener);