
Component Registration | Vue.js
PascalCase names are valid JavaScript identifiers. This makes it easier to import and register components in JavaScript. It also helps IDEs with auto-completion. <PascalCase /> makes it more …
Vue 3 Migration Guide
Dec 31, 2023 · Notable New Features Some of the new features to keep an eye on in Vue 3 include: Composition API * SFC Composition API Syntax Sugar (<script setup>) * Teleport Fragments Emits …
Glossary - Vue.js
It refers to the ability to use a custom HTML element in your HTML markup to include a Web Component at that point in the page. Vue has built-in support for rendering custom elements and allows them to …
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 starting point. If …
Migrating from Vue 2 - Vue Router
New Features Some of new features to keep an eye on in Vue Router 4 include: Dynamic Routing Composition API
API 参考 | Vue.js
Vue.js - 渐进式的 JavaScript 框架 <script setup> 基本语法 响应式 使用组件 使用自定义指令 defineProps () 和 defineEmits () defineModel () defineExpose () defineOptions () defineSlots () useSlots () 和 …
HTML and Static Assets - Vue CLI
Result filenames include content hashes so you don’t need to worry about browsers caching their old versions. The public directory is provided as an escape hatch, and when you reference it via …
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-delimited string, a …
Introduction - Vue Router
Vue Router is the official router for Vue.js. It deeply integrates with Vue.js core to make building Single Page Applications with Vue.js a breeze. Features include:
Configuration Reference - Vue CLI
Aug 21, 2025 · module.exports = { pages: { index: { // entry for the page entry: 'src/index/main.js', // the source template template: 'public/index.html', // output as dist/index.html filename: 'index.html', // …