Custom Component v-model attribute with Vue 3

Originally published at: Custom Component v-model attribute with Vue 3 - Server Side Up

The core of VueJS and why it’s so awesome is the ease of making reactive interfaces. To watch input on an element you can use the v-model attribute. This attribute will automatically update when the user changes a value. However, when you start to create more advanced VueJS functionality, you will want to abstract that…