-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem with vue files #19
Comments
What language does it display in the very bottom right of Sublime Text? |
It shows |
I can't reproduce the problem you're having. Could you copy-and-paste the entire file here for me to test it? |
Ok. Remember to install the Vue Syntax Highlight package. <template>
<div v-if="user">
<h2>{{ user }}</h2>
</div>
</template>
<script>
export default {
data() {
return {
user: 'Admin'
}
}
}
</script>
<style scoped>
h2 {
color: red;
}
</style> |
@victorwpbastos, @JoshuaWise Did you have any method to deal with this? thx a lot |
@icepole-jon, for now, I disabled the plugin. |
+1. I have Vue Syntax Highlight installed, but I am getting all of those red blocks too. Any way that this can get fixed? I disabled the package for now. |
Enabling the "Javascript" package that this package disables solves the red blocks problem. But, it seems like Sublime needs a few seconds before it can render a Vue file on boot. I will uninstall this package until this problem has been resolved. |
Same issue here. |
With the default Javascript package installed: |
For anyone interested, babel-sublime is working fine with .vue files, after disabling the default Javascript package. |
The problem seems to be caused by the |
With this package installed the
.vue
files are rendered like this:The text was updated successfully, but these errors were encountered: