Emmet in .vue files using jsx? [enhancement]
Enchufadoo opened this issue · 0 comments
Enchufadoo commented
Info
- Platform: Windows 10
- Vetur version: 0.11.7
- VS Code version: 1.20.0
Problem
There's no emmet autocompletion inside the render function in .vue files. It works perfectly inside the template tag.
https://i.imgur.com/i31TAsC.png
But not on inside the render function
Reproducible Case
Inside a .vue component
<script>
export default {
render(h) {
return (
<div>
// try emmet here
</div>
)
}
}
</script>