yierstem
yierstem

Reputation: 2067

Set up vue js without npm

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

Answers (3)

choasia
choasia

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

Mesut
Mesut

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

Niles Tanner
Niles Tanner

Reputation: 4021

You could download the source and just include it in a script tag in the index.html.

Upvotes: 5

Related Questions