-1👍
Are you using vue-cli
for this project? If so, you should be able to just do:
npm install --save-dev babel-loader
(or if you’re using yarn
)
yarn add --dev babel-loader
If you’re not using vue-cli
then you will still need to install babel-loader
using the methods above, but you will also have to add it to your webpack
config.
More on babel-loader
:
Source:stackexchange.com