
Template Syntax - Vue.js
Vue uses an HTML-based template syntax that allows you to declaratively bind the rendered DOM to the underlying component instance's data. All Vue templates are syntactically valid …
Vue and Web Components
We consider Vue and Web Components to be primarily complementary technologies. Vue has excellent support for both consuming and creating custom elements. Whether you are …
Installation — Vue.js
Feb 7, 2016 · Direct <script> Include Simply download and include with a script tag. Vue will be registered as a global variable. Don’t use the minified version during development. You will …
Quick Start - Vue.js
Quick Start Try Vue Online To quickly get a taste of Vue, you can try it directly in our Playground. If you prefer a plain HTML setup without any build steps, you can use this JSFiddle as your …
KeepAlive - Vue.js
Include / Exclude By default, <KeepAlive> will cache any component instance inside. We can customize this behavior via the include and exclude props. Both props can be a comma …
404 | Vue.js
Not FoundPage Not Found You found a dead link: /guide/scaling-up/sfc.html Please let us know so we can fix it.
Ways of Using Vue
Standalone Script Vue can be used as a standalone script file - no build step required! If you have a backend framework already rendering most of the HTML, or your frontend logic isn't complex …
Working with Webpack - Vue CLI
Working with Webpack Simple Configuration The easiest way to tweak the webpack config is providing an object to the configureWebpack option in vue.config.js:
HTML and Static Assets - Vue CLI
When to use the public folder You need a file with a specific name in the build output. You have thousands of images and need to dynamically reference their paths. Some library may be …
Using Vue with TypeScript
Configuring tsconfig.json Projects scaffolded via create-vue include pre-configured tsconfig.json. The base config is abstracted in the @vue/tsconfig package. Inside the project, we use Project …