Choose one: is this a 馃悰 bug report or 馃檵 feature request?
a 馃悰 bug report
.babelrc
{
"presets": [
["es2015"]
]
}
Build pass
Not passed
Maybe because of babel?
I'm using parcel + vue-compiler with vue single file temeplate
| Software | Version(s) |
| ---------------- | ---------- |
| Parcel |1.51
| Node |9.6.0
| npm/Yarn |5.3.0
| Operating System |windows10
I also got this error.
parcel-plugin-vue is installed, but in my app.vue , it throws 'import' and 'export' may only appear at the top level
Solved. Successfully built.

@limitedeternity Plain Text would have been nice for quick copy/paste. ;)
@wtfuii
.babelrc:
{
"presets": [
"env",
"stage-0"
],
"plugins": [
"transform-vue-jsx",
"transform-runtime",
"syntax-dynamic-import"
]
}
Seems to be a misconfigured babel
Most helpful comment
Solved. Successfully built.
