v16.8.0
Bug Fixes
- hmr: fix hmr regression (bacc6a9)
Features
-
enableTsInTemplate option (7613534)
-
When used with
ts-loader, due tots-loader's cache invalidation behavior, it sometimes prevents the template from being hot-reloaded in isolation, causing the component to reload despite only the template being edited. If this is annoying, you can set this option tofalse(and avoid using TS expressions in templates). -
Alternatively, leave this option on (by default) and use
esbuild-loaderto transpile TS instead, which doesn't suffer from this problem (it's also a lot faster). However, do note you will need to rely on TS type checking from other sources (e.g. IDE orvue-tsc).
-