Front-end Development / JavaScript / Vue What is and how to use “Props” | Vue.js The props (short for properties) are a way to pass data from a parent component to a child component. Props are used to make a component m…
Front-end Development / JavaScript / Vue How to use “Provide / Inject” | Vue 3 When you need to share values between components, Vue’s provide and inject methods should be considered instead of props because…
Front-end Development / JavaScript / Vue How to create an application instance | Vue 3 Now to get started we need to use the createApp function in Vue 3 to create an application instance, this is a simple and straightforward…