About 6,490 results
Open links in new tab
  1. 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 …

  2. CLI Service - Vue CLI

    --inline-vue include the Vue module in the final bundle of library or web component target --name name for lib or web-component mode (default: "name" in package.json or entry filename)

  3. 介绍 - VuePress

    Aug 26, 2025 · 介绍 VuePress 是一个以 Markdown 为中心的静态网站生成器(Static Site Generator, SSG)。你可以使用 Markdown 来书写内容(如文档、博客等),然后 VuePress 会帮助你生成一 …

  4. Vueconf US – May 19-21, 2026 in Atlanta, GA | Vue.js Conference

    Examples include Vueconf.US registration, sending e-mail, and processing credit card payments. They have access to personal information needed to perform their functions, and this is subject to their …

  5. Active links - Vue Router

    For example, using an alias would still be considered a match, so long as it resolves to the same route record and params. If a route has a redirect, it won't be followed when checking whether a link is …

  6. Typed Routes - Vue Router

    // Note you can name them whatever you want 'named-param': RouteRecordInfo< 'named-param', '/:name', { name: string | number }, // Allows string or number { name: string }, // but always returns a …

  7. Redirect and Alias | Vue Router

    The official Router for Vue.jsAlias A redirect means when the user visits /home, the URL will be replaced by /, and then matched as /. But what is an alias? An alias of / as /home means when the user visits …

  8. Render Function API | Vue 3 Migration Guide

    h being globally imported means that any library that contains Vue components will include import { h } from 'vue' somewhere. As a result, this creates a bit of overhead since it requires library authors to …

  9. Component Registration — Vue.js

    Automatic Global Registration of Base Components Many of your components will be relatively generic, possibly only wrapping an element like an input or a button. We sometimes refer to these as base …

  10. Build Targets - Vue CLI

    Build Targets When you run vue-cli-service build, you can specify different build targets via the --target option. This allows you to use the same code base to produce different builds for different use cases. …