lit-vue
lit-vue copied to clipboard
🔥 Vue SFC goodies directly in JavaScript files.
[](https://renovatebot.com) Welcome to [Renovate](https://togithub.com/renovatebot/renovate)! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin. 🚦 To activate Renovate, merge this Pull Request....
In the readme, would be useful to put a `Use with vue-cli` section
how about instead only html`...` ```js export const template = html`...` ``` maybe we can ```js export const template = html`...` export default { data() {}, // this might be...
Current way: ```js const template = html`{{ message }}` ``` New syntax: ```js const template = vm => html`${vm.message}` ``` - [ ] interpolations, like `${vm.message}` - [ ] prop...