Skip to content

v1.7.14

Compare
Choose a tag to compare
@jodarove jodarove released this 10 Sep 08:54
· 1821 commits to master since this release

Improvements

  • #2000 - template-compiler: Optimizes the parse phase of the template compiler by using Acorn to parse expressions in a component template. Important: with this change, the following become invalid:
    • Expressions in a template that end with ;. For example: <template><button title={foo;}>click me</button></template>.
    • Expressions in a template that are wrapped in extra curly brackets. For example: <template><button title={{foo}}>click me</button></template>.