Vue

Vue.js is an open-source JavaScript framework for building user interfaces and single-page applications. Vue is a progressive framework capable of creating sophisticated Single-Page Applications and Progressive Web Applications.

Headless WordPress JWT Vue Authentication

WordPress is one of the most popular content management systems on the web. With it’s increasing security concerns and slow server loads more and more applications are finding ways to strip it down, only utilizing it’s REST API. Vue, being one of the most popular front-end frameworks is a perfect compliment to using WordPress as a Headless CMS. This tutorial looks at using WordPress JWT Auth to secure your front-end Vue application.

Vue Composition API vs React Hooks Quick Comparison

Today we’ll be comparing two relatively new concepts in Vue and React. Vue recently released the Vue Composition API RFC which is an additive API that changes the setup of Vue components to make use of reactivity in Vue and to help developers organize their components by logical concern to avoid bloated components. Since React […]

Vuex Module Composition

State management can be a wonderful thing to incorporate into your application, but as your app grows it can become increasingly difficult to scale your store. Luckily, vuex (used in vue applications) allow you to organize your store/state in modular form so you can more easily scale your app. Today, we’ll explore both Vuex Modules […]