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

  2. RouterView slot | Vue Router

    The code above is equivalent to using <router-view /> without the slot, but the slot provides extra flexibility when we want to work with other features.

  3. Packaging Vue Components for npm

    The file used in these examples was generated by hand, and will include the minimum configuration required for the discussion/task at hand. It is likely your own package.json file will …

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

  5. Ways of Using Vue

    Vue.js - The Progressive JavaScript FrameworkWays of Using Vue We believe there is no "one size fits all" story for the web. This is why Vue is designed to be flexible and incrementally …

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

  7. Working with CSS - Vue CLI

    Loaders which can be configured via loaderOptions include: css-loader postcss-loader sass-loader less-loader stylus-loader

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

  9. HTML and Static Assets | Vue CLI

    Sep 2, 2019 · 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 …

  10. Built-in Components - Vue.js

    interface KeepAliveProps { /** * If specified, only components with names matched by * `include` will be cached. */ include?: MatchPattern /** * Any component with a name matched by …