
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 …
Vue and Web Components
Vue and Web Components Web Components is an umbrella term for a set of web native APIs that allows developers to create reusable custom elements. We consider Vue and Web …
Installation - Vue Router
If you're starting a new project, you might find it easier to use the create-vue scaffolding tool, which creates a Vite-based project with the option to include Vue Router:
Introduction - Vue DevTools
Unleash Vue Developer ExperienceIntroduction What is Vue DevTools? Vue DevTools is a tool designed to enhance the Vue developer experience, it is a powerful and versatile tool that can …
Getting Started | Vue Loader
// webpack.config.js const { VueLoaderPlugin } = require('vue-loader') module.exports = { module: { rules: [ // ... other rules { test: /\.vue$/, loader: 'vue-loader' } ] }, plugins: [ // make sure to …
Components Basics — Vue.js
For example, we may decide to include an accessibility feature to enlarge the text of blog posts, while leaving the rest of the page its default size: In the parent, we can support this feature by …
Introduction - Vue Router
Features include: Nested routes mapping Dynamic Routing Modular, component-based router configuration Route params, query, wildcards View transition effects powered by Vue.js' …
$attrs includes class & style | Vue 3 Migration Guide
Guide on migrating from Vue 2 to Vue 3Migration Strategy In components that use inheritAttrs: false, make sure that styling still works as intended. If you previously relied on the special …
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 …
TypeScript with Composition API - Vue.js
In cases where the exact type of the component isn't available or isn't important, ComponentPublicInstance can be used instead. This will only include properties that are …