Closed aschempp closed 6 years ago
Parsing attributes apparently does not stop if the next attribute starts with @.
@
Example:
<button type="button" title="My Title" @click="myAction">
The resulting key and label contains everything from title and action, e.g. My Title" @click="myAction
My Title" @click="myAction
This seems to be happening on any attribute if it's not the last one.
There was an error in the regex used for attributes. Should be fixed in 1.0.7.
1.0.7
Parsing attributes apparently does not stop if the next attribute starts with
@
.Example:
The resulting key and label contains everything from title and action, e.g.
My Title" @click="myAction