Join the Stack Overflow Community
Stack Overflow is a community of 6.6 million programmers, just like you, helping each other.
Join them; it only takes a minute:
Sign up

I am using vue.js in my web app and everything works fine in desktop browsers but not in mobile, so I installed android emulator to see what's the problem and I was surprised to see this (I used remote debugging in chrome) : Uncaught SyntaxError: Unexpected token ILLEGAL vueapp.js:4

enter image description here

why do I see this ?

share|improve this question
up vote 2 down vote accepted

Android doesn't support template strings yet:

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.