Asset URL Handling | Vue Loader
Asset URL Handling When Vue Loader compiles the <template> blocks in SFCs, it also converts any encountered asset URLs into webpack module requests. For example, the following …
Production Deployment - Vue.js
Vue.js - The Progressive JavaScript FrameworkProduction Deployment Development vs. Production During development, Vue provides a number of features to improve the …
Installation | Vue Devtools
Chrome Install the extension on the Chrome Web Store: Install on Chrome Beta To install the beta version of the devtools, remove or disable any existing versions and install the extension from …
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 …
Installation | Vue DevTools
Unleash Vue Developer ExperienceInstallation There are multiple options to add this tool to your projects, ensuring that it fits seamlessly into your development workflow. Whether you're …
Built-in Components | VuePress
Aug 6, 2025 · Built-in Components AutoLink Props: config Type: AutoLinkConfig Required: true Usage: Details: This component will automatically render internal link as <RouteLink>, and …
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 …
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:
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 include …
Template Syntax — Vue.js
Template Syntax Vue.js uses an HTML-based template syntax that allows you to declaratively bind the rendered DOM to the underlying Vue instance’s data. All Vue.js templates are valid …