https://slides.com/therealdanvega/vuecli
http://www.therealdanvega.com
http://www.github.com/cfaddict
http://www.twitter.com/therealdanvega
<script src="https://cdn.jsdelivr.net/npm/vue"></script>Vue is a progressive framework for building user interfaces. Unlike other monolithic frameworks, Vue is designed from the ground up to be incrementally adoptable.
Already know HTML, CSS, and JavaScript? Read the guide and start building things in no time!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML/CSS/JavaScript</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h1>HTML/CSS/JavaScript</h1>
<script src="main.js"></script>
</body>
</html>
An incrementally adoptable ecosystem that scales between a library and a full-featured framework.
20KB min+gzip Runtime
Blazing Fast Virtual DOM
Minimal Optimization Efforts
<script src="https://cdn.jsdelivr.net/npm/vue"></script>npm install -g @vue/cli
# OR
yarn global add @vue/clivue --versionCommand Line Interface (CLI)
// you need node/npm installed
node -v
npm -v
// install the Vue CLI
npm install -g @vue/cli
// check Vue CLI version (3.3.0)
vue --version //3.3.0
vue create hello-worldvue create --helpUsage: create [options] <app-name>
create a new project powered by vue-cli-service
Options:
-p, --preset <presetName> Skip prompts and use saved or remote preset
-d, --default Skip prompts and use default preset
-i, --inlinePreset <json> Skip prompts and use inline JSON string as preset
-m, --packageManager <command> Use specified npm client when installing dependencies
-r, --registry <url> Use specified npm registry when installing dependencies
-g, --git [message|false] Force / skip git initialization, optionally...
-n, --no-git Skip git initialization
-f, --force Overwrite target directory if it exists
-c, --clone Use git clone when fetching remote preset
-x, --proxy Use specified proxy when creating project
-b, --bare Scaffold project without beginner instructions
-h, --help Output usage informationvue uiContinuing the Vue Journey
Projects in the Vue ecosystem that might interest you