Best of Vue.jsSeptember 2022

  1. 1
    Article
    Avatar of pointerPointer·4y

    BuilderIO/qwik: The HTML-first framework. Instant apps of any size with ~ 1kb JS

    Qwik allows fully interactive sites to load with almost no JavaScript and pickup from where the server left off. As users interact with the site, only the necessary parts of the site load on-demand. This precision lazy-loading is what makes Qwik so quick.

  2. 2
    Article
    Avatar of lnLaravel News·4y

    Laravel Bootcamp

    Laravel Bootcamp is a brand new learning site from the Laravel team. It's a "choose your own adventure" style while building a new Laravel app with Vue or React. The goal is to help developers that are new to the framework get up and going quickly.

  3. 3
    Article
    Avatar of devtoDEV·4y

    A beginner's guide to VueJS

    VueJS is a popular front-end framework for building user interfaces. It builds on top of standard HTML, CSS, and JavaScript, and provides a declarative and component-based programming model. The most common use case includes fetching data from the server, logging, etc. Each vue component goes through a series of phases, mounting, updating, and un-mounting.

  4. 4
    Article
    Avatar of asayerasayer·4y

    Next.js vs NuxtJS: a comparison of two powerhouses

    NuxtJS is a free, open-source JavaScript framework used to build Vue.js apps. Its objective is to make it simple, quick, and organized for Vue developers to benefit from cutting-edge technologies. The distribution of Nuxt JS is because the page is initially empty when we rely on JavaScript. There is no material to index or process before JavaScript is performed. A lot of crawlers don’t support JavaScript.

  5. 5
    Article
    Avatar of syncfusionSyncfusion·4y

    Why Next.js and Nuxt.js Are Becoming Popular

    Next.js and Nuxt.js are getting more popular among web developers all the time. Both technologies make it easier for developers to create various web apps, but each has its own set of best practices and is designed to cater to different business objectives. The Problem with React and Vue Modern frameworks such as React.js could help us overcome these limitations.

  6. 6
    Article
    Avatar of asayerasayer·4y

    Making API calls in Vue with Axios

    Making API calls in Vue with Axios is a basic Vue-CLI app to test the requests we will make during this tutorial. You can install Axios using the node package manager or Yarn. Data and the output for the above code would look like this: To limit the number of objects in the output, we can send a param with a limit set to 5. The complete code for this project can be found here. The full code can be seen here.

  7. 7
    Article
    Avatar of asayerasayer·4y

    Rendering real-time data with Vue, Node, and socket.io

    Vue, Node. Js, Socket.io, and socket.io Sockets are usually best for real-time data communications. In this tutorial, I will show you how to render real- time data over the server and how sockets are used. We will create a simple block game using Vue the BlockGame to the template tag.

  8. 8
    Article
    Avatar of asayerasayer·4y

    An ultimate guide to the Vue 3 Composition API

    Composition API allows you to restructure code from options API, i.e., data, methods, and lifecycle hooks, by grouping all of your code that logically belongs together. It also offers much better TypeScript support. The defineProps() method is used to declare props using <script setup. While in non-script setup components, props are declared using the props property. In non- Scripts, Props is declared using Props.

  9. 9
    Article
    Avatar of logrocketLogRocket·4y

    Exploring PrimeVue, a Vue-based UI component library

    Using a component-based frontend makes developing web apps easier and more manageable. PrimeVue provides a rich set of more than 90 responsive UI components — enough to cover a broad range of use cases. It also offers some unique components like Terminal, a text-based UI, and Dock, a navigation component. Users will be able to create, edit, and delete notes. Each note will contain a title, some content, and a tag or tags.

  10. 10
    Article
    Avatar of medium_jsMedium·4y

    Introducing Colada

    Pinia is the new official state management library for Vue, compatible with Vue2 and Vue3. As compared with the previous VueX versions it is replacing, it offers a simpler, less verbose API, and introduces native support for Typescript.

  11. 11
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    How to Configure Metadata for a Single-Page Application

    Metadata is an integral part of any modern web app because it's tethered to search engine optimization (SEO) Search engines and their respective results page (SERPS) rely on metadata to properly index and display relative information for each site. React-helmet is now considered deprecated in favor of the more robust react- Helmet-async. After following these steps, you can use the Helmet component within any component inside your React app.

  12. 12
    Article
    Avatar of circleCircleCI·4y

    Automate testing for a Vue.js application

    Vue.js is a progressive framework for building reusable components for the web user interface. In this tutorial, I will lead you through building a simple listing application that shows the names and roles of users. You will also configure a continuous integration pipeline for automating testing. In the tutorial, you will alsoConfigure a continuous Integration pipeline forAutomating testing. For more information on how to use Vue and how to build the application.