Javascript – Passing input value to vue component
I'm new in vuejs and I was creating custom components for elements like buttons, links, inputs, etc. This is my input component- <template> <div class="position-relative"> <input :class="[{ 'pe-5': type === 'password' }, 'form-control p-2 rounded-3']" :type="inputType" :id="label ? slugify(label) :…