Current way: ```js const template = html`<div>{{ message }}</div>` ``` New syntax: ```js const template = vm => html`<div>${vm.message}</div>` ``` - [ ] interpolations, like `<span>${vm.message}</span>` - [ ] prop values, like `@click=${vm.inc}` - [ ] v-for, impossible, we can convert `.map` to `v-for` but that's JSX not Vue template.. - [ ] v-if v-else v-else-if, like `<div v-if=${vm.foo}></div>`
Current way:
New syntax:
<span>${vm.message}</span>@click=${vm.inc}.maptov-forbut that's JSX not Vue template..<div v-if=${vm.foo}></div>