v1.7.14
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>
.
- Expressions in a template that end with