Skip to content
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

IE11 issue - unexpected identifier.. #139

Open
stockenberg opened this issue Sep 24, 2019 · 0 comments
Open

IE11 issue - unexpected identifier.. #139

stockenberg opened this issue Sep 24, 2019 · 0 comments

Comments

@stockenberg
Copy link

export function loadAsyncComponents ({ router }) {

i think i found an issue regarding IE11 in your node_modules/@akryum/vue-cli-plugin-ssr/client/index.js. The IE gave an error like unexpected identifier, IE11 doesnt support named parameters like you simulated. I fixed it with the following code:

export function loadAsyncComponents (options) {
  options = options || {};
  var router = options.router || 0;

what do you think about this?

regards
Marten

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant