Is there a way to create HTML inside a Vue template without having to do it manually using the VS Code editor?
<template>
<div class="hello">
<h1>Hello, world!</h1>
</div>
</template>
<script>
export default {
name: 'HelloWorld',
props: {
msg: String
}
}
</script>
In the code above, even when creating just an h1 element, I still have to manually open and close the tag, which can be time consuming. Does anyone have a solution for this?
I've tried installing various snippets, but none of them seem to be working. Any suggestions?