(name, value)
| 158 | this.footerOffset = footerOffset; |
| 159 | var attributes = null; |
| 160 | const update = (name, value) => { |
| 161 | attributes = buildAttribute(attributes, name, value); |
| 162 | }; |
| 163 | const attrs = Object.keys(this.$attrs) |
| 164 | .filter(key => key === "id" || key.startsWith("data-")) |
| 165 | .reduce((res, key) => { |
no test coverage detected