About 5,150 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 …

  2. Getting Started - Vue Router

    If you'd like to see a complete example using Vite, you can use the create-vue scaffolding tool, which has the option to include Vue Router in its example project:

  3. Composables - Vue.js

    What is a "Composable"? In the context of Vue applications, a "composable" is a function that leverages Vue's Composition API to encapsulate and reuse stateful logic. When building …

  4. Components Basics - Vue.js

    As we develop our <BlogPost> component, some features may require communicating back up to the parent. For example, we may decide to include an accessibility feature to enlarge the text …

  5. Template Syntax - Vue.js

    Learn the basics of Vue.js template syntax, including dynamic content rendering, directives, and expressions for building interactive web applications.

  6. Form Input Bindings | Vue.js

    The true-value and false-value attributes don't affect the input's value attribute, because browsers don't include unchecked boxes in form submissions. To guarantee that one of two values is …

  7. Global API Treeshaking | Vue 3 Migration Guide

    If your module bundler of choice happens to be Rollup, you basically get the same effect for free, as by default Rollup will treat absolute module IDs ('vue' in our case) as external …

  8. Slots - Vue.js

    Slot Content and Outlet We have learned that components can accept props, which can be JavaScript values of any type. But how about template content? In some cases, we may want …

  9. 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 …

  10. Event Handling | Vue Test Utils

    To fully test this component, we should verify that an increment event with the latest count value is emitted. Asserting the emitted events To do so, we will rely on the emitted() method. It returns …