0

I have been around JavaScript for years but only ES5, not ES6. I have also used VueJS in a single instance by just adding this line:

<script src="http://unpkg.com/vue.js"></script>

But now I'm at the point with VueJS where I want to start using *.vue component files.

Is it possible to do this without using such tools as WebPack etc.? I really want to avoid having one set of files I write code in, a build process, and another set of files I serve to the user.

Said (hopefully correctly) another way, is there an ES5 version of vue-loader which would work?

Oliver Williams
  • 5,966
  • 7
  • 36
  • 78

1 Answers1

0

No. This will not be happening, as far as I'm aware. To use .vue files, you need a build process.

bbsimonbb
  • 27,056
  • 15
  • 80
  • 110