Best of Vue.jsAugust 2021

  1. 1
    Article
    Avatar of hashnodeHashnode·5y

    Let me introduce you to Inertia.js, something you didn't know you were missing

    Inertia.js is a package built for Laravel allowing people to develop single-page applications without building an API. Inertia allows you to create client-side rendered apps, using React, Vue or Svelte by leveraging existing server-side frameworks.

  2. 2
    Article
    Avatar of asayerasayer·5y

    Optimizing the Performance of Your Vue Apps Using Web Workers

  3. 3
    Article
    Avatar of phProduct Hunt·5y

    FrontWork Component Marketplace - A marketplace to buy and sell frontend components

    Buy and sell high-quality frontend components. Speed up your development by downloading prebuilt components in React, Vue, HTML, and more. Earn money for selling your own components. Embed and share your content with the rest of the world. Back to Mail Online home. back to the page you came from.

  4. 4
    Article
    Avatar of vuejsdevelopersVue.js Developers·5y

    <Lazy> rendering in Vue to improve performance

    Vue 3 has a universal <Lazy> component that can be used to delay and schedule rendering. It can be set up to be used by the IntersectionObserver utility to observe the DOM. Vue can use this template to observe a real DOM element to pass it to a ref to be rendered.

  5. 5
    Article
    Avatar of gcgitconnected·5y

    Vue.js — How I call a method in a component from outside the component

    Vue.js — How I call a method in a component from outside the component in Vue 2. Jannick Holm gives some code examples on how you can implement some of my favorite methods in your Vue app. The $emit property is used for emitting a custom event from our child component and we can then listen for the same event in our parent component.