Signature Pad in Vue 3

This article will demonstrate how to create a signature pad component in Vue 3 in a few simple steps. Step 1. Install dependencies Step 2. Create a component Step 3. …

Laravel – Cache

Sometimes in applications, there’s a need to speed up response time. One possible way to do that is to use a cache. Cache can store data for which the load …

Laravel 11 – New directory structure

One of the most significant changes in the update is the overhaul of the application framework. Half of the folders within the main project directory underwent minor to major revisions. …

Migration to Vue 3, Part 6. – Removed APIs

Using numbers, i.e. keyCodes, as v-on modifiers (and defining custom aliases via config.keyCodes) is no longer supported. Vue 2 Vue 3 $on, $off and $once instance methods are removed. Component …

Migration to Vue 3, Part 5. – Custom Elements

The checks to determine whether tags should be treated as custom elements are now performed during template compilation, and should be configured via compiler options instead of runtime config. Vue …