About 757 results
Open links in new tab
  1. Template Syntax — Vue.js

    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 HTML that can be …

  2. Template Syntax - Vue.js

    Vue uses an HTML-based template syntax that allows you to declaratively bind the rendered DOM to the underlying component instance's data. All Vue templates are syntactically valid …

  3. Introduction - Vue.js

    Declarative Rendering: Vue extends standard HTML with a template syntax that allows us to declaratively describe HTML output based on JavaScript state. Reactivity: Vue automatically …

  4. Examples | Vue.js

    Explore practical examples of Vue.js, the progressive JavaScript framework for building web user interfaces with intuitive API and world-class documentation.

  5. Render Functions & JSX - Vue.js

    The render function is declared inside setup () so it naturally has access to the props and any reactive state declared in the same scope. In addition to returning a single vnode, you can also …

  6. Components Basics - Vue.js

    We will be using SFC syntax for the rest of this guide - the concepts around components are the same regardless of whether you are using a build step or not. The Examples section shows …

  7. Data Binding Syntax - vue.js

    In Vue.js, a binding expression consists of a single JavaScript expression optionally followed by one or more filters. JavaScript Expressions So far we’ve only been binding to simple property …

  8. Computed Properties - Vue.js

    The computed () function expects to be passed a getter function, and the returned value is a computed ref. Similar to normal refs, you can access the computed result as …

  9. Methods and Event Handling - Vue.js

    It makes it easier to locate the handler function implementations within your JS code by simply skimming the HTML template. Since you don’t have to manually attach event listeners in JS, …

  10. Quick Start - Vue.js

    Many of the examples for Composition API throughout the guide will be using the <script setup> syntax, which requires build tools. If you intend to use Composition API without a build step, …

  11. Some results have been removed