lit-vue icon indicating copy to clipboard operation
lit-vue copied to clipboard

🔥 Vue SFC goodies directly in JavaScript files.

Results 5 lit-vue issues
Sort by recently updated
recently updated
newest added

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](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...

enhancement
difficulty: hard

It would be better if you supported Source Map.

enhancement
help wanted