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. …

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 …

Migration to Vue 3, Part 3. – Components

functional attribute on single-file component <template> is removed. Vue 2 Vue 3 functional option in components created by functions is removed. Vue 2 Vue 3 New defunctional option in components …

What’s new in Vue 3

Vue 3 was officially released on September 18, 2020. It brings several improvements and changes compared to Vue 2. Here are some of the main differences: Composition API Vue 3 …