vuejs / vue-syntax-highlight

💡 Sublime Text syntax highlighting for single-file Vue components

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Highlighting breaks when <script> goes before <template />

WenrenHe opened this issue · comments

When code goes like this:

<script>
// do sth...
</script>
<template>
<!-- component template -->
</template>

then any code highlighting after </script> broken.