Best of Vue.jsJuly 2023

  1. 1
    Article
    Avatar of communityCommunity Picks·3y

    How Do I Drag and Drop in Vue?

    Vue.js is great for making interactive interfaces. It includes interfaces where elements can be dragged around and dropped in order to manually sort elements, or group them in different ways. Vue Draggable is a handy wrapper around Sortable.js. You can even drag and drop elements between 2 or more arrays.

  2. 2
    Article
    Avatar of lnLaravel News·3y

    Inertia vs Livewire

    Inertia isn't a frontend framework. It's a wire protocol specification to allow you to build Laravel + React / Vue / Svelte apps monolithically. Instead, you should be keeping up with what new features Vue or React are getting. It solves the problem it set out to solve.

  3. 3
    Article
    Avatar of telerikTelerik·3y

    Common Mistakes When Creating Composition Functions in Vue

    Vue 3’s composition API has changed the way we approach component creation. One of the most common pitfalls is the creation of side effects within a composition function.

  4. 4
    Article
    Avatar of telerikTelerik·3y

    How to Use Axios with Vue.js

    Axios is a popular JavaScript HTTP client library that is used on frontend apps. It has an easy-to-use API that lets us make all types of HTTP requests. In our Vue apps, we often need to make requests to external APIs via HTTP to send and receive data. We can install the Axios library easily.

  5. 5
    Article
    Avatar of telerikTelerik·3y

    Best Practices for Testing Vue Applications

    Software testing is essential for identifying weaknesses or issues in our Vue application before releasing it to consumers. Software testing can assist in identifying problems such as functional flaws, defects, gaps, code vulnerabilities, performance, scalability issues or missing requirements. Vue has different testing types, and each of the testing types plays a different role.