I am trying to run a piece of JavaScript code written in a tutorial that looks like this:
main.js
import Vue from 'Vue'; import Alert from './components/Alert.vue'; new Vue({ el: 'body', components: { Alert } })
However, PhpStorm gives the following error:
Ads import not supported by current version of JavaScript
How can I get a newer (?) Version of JavaScript in PhpStorm? Is this really a problem here?
javascript ecmascript-6 phpstorm
user3089840 Mar 29 '16 at 21:34 2016-03-29 21:34
source share