Skip to content

v5.9.0 - Minor Update

Latest
Compare
Choose a tag to compare
@Javiani Javiani released this 17 Jan 04:08
· 3 commits to main since this release

Minor Update

⚠️ Breaking Change

The default template delimiters was changed to mustache {{ variable }}.
This is to avoid conflict with Astro meta-framework and also with Template Strings used in export const template().

Old

<my-component>
   <h1>Hello, ${name}</h1>
</my-component>

New

<my-component>
   <h1>Hello, {{name}}</h1>
</my-component>