Reputation: 2067
How can I set up vue js without npm? I'm not able to install npm right now because of some reasons. Is vue.js enough? What am I missing?
P.S.: I've just started to learn vue.js and I don't want to miss something and struggle after I realize I need something that I can get only with npm.
Upvotes: 8
Views: 14483
Reputation: 10852
Have you checked this?
Simply download and include with a script tag. Vue will be registered as a global variable.
You can simply use vuejs by including it directly.
Upvotes: 1
Reputation: 242
Try CodeSandbox.io. Its an online editor and just got support for Vue. It automates things like transpiling, bundling and dependency management.
Upvotes: 0
Reputation: 4021
You could download the source and just include it in a script tag in the index.html.
Upvotes: 5