Curated Video
The Complete Vue.js Course for Beginners - Methods and Parameters
In this video, you will learn about methods with parameters in Vue.js. This clip is from the chapter "Getting Started with Basic Code" of the series "The Complete Vue.js Course for Beginners".This section gets you started with the basic...
Curated Video
The Complete Vue.js Course for Beginners - Data Child to Parent
In this video, we will talk about how we can pass data from a child component to a parent component. This clip is from the chapter "Basic Code Part" of the series "The Complete Vue.js Course for Beginners".This section explains the basic...
Curated Video
The Complete Vue.js Course for Beginners - Create a Child Component in Vue.js
In this video, we will create a child component and we will also discuss how we can pass data in between child components. This clip is from the chapter "Getting Started with Basic Code" of the series "The Complete Vue.js Course for...
Curated Video
The Complete Vue.js Course for Beginners - For Loop Array of Objects
In this video, we will talk about the use of for loop with arrays. We will do practical work related to for loops with arrays. This clip is from the chapter "Getting Started with Basic Code" of the series "The Complete Vue.js Course for...
Curated Video
The Ultimate Excel VBA Course - Learn and Master VBA Fast - Message Box
This video explains the message box or the msg box in Excel VBA. This clip is from the chapter "Subs and Functions" of the series "The Ultimate Excel VBA Course - Learn and Master VBA Fast".This section explains subs and functions in VBA.
Curated Video
The Ultimate Excel VBA Course - Learn and Master VBA Fast - Mid Function
This video explains the mid function, which is used to grab characters from a string of text; it has three parts: the string to search, the starting position, and the number of characters to grab. This clip is from the chapter "String...
Curated Video
The Ultimate Excel VBA Course - Learn and Master VBA Fast - InStr, InStrRev, and StrReverse
This video explains Instr and InstrRev, where Instr is looking from the start to the end, while InstrRev is looking from the end of the string to the beginning. The StrReverse returns a string by reversing the original string supplied....
Curated Video
The Ultimate Excel VBA Course - Learn and Master VBA Fast - Trim, Len, and Space
This video explains three different functions: Trim, which is used to trim unwanted space from the text; the Len function is used to get the number of characters the string has; and the Space function is useful for formatting output and...
Curated Video
The Ultimate Excel VBA Course - Learn and Master VBA Fast - Changing Case
This video explains L case or U case; as the name suggests, these are used to change the letters into lowercase or uppercase. This clip is from the chapter "String Functions" of the series "The Ultimate Excel VBA Course - Learn and...
Curated Video
The Complete Vue.js Course for Beginners - Dynamic Routing
In this video, we are going to talk about dynamic routing, what is dynamic routing, why we use dynamic routing and what is the difference between static routing and dynamic routing This clip is from the chapter "Routing and API" of the...
Curated Video
The Complete Vue.js Course for Beginners - beforeUnmount and unmounted
Called right before a component instance is to be unmounted. When this hook is called, the component instance is still fully functional. This hook is not called during server-side rendering. This clip is from the chapter "Understanding...
Curated Video
The Complete Vue.js Course for Beginners - beforeUpdate and updated
This video talks about the beforeUpdate and updated hooks in detail. This clip is from the chapter "Understanding the Lifecycle Hooks in Vue.js" of the series "The Complete Vue.js Course for Beginners".In this video, we will understand...
Curated Video
The Complete Vue.js Course for Beginners - beforeCreate and created
In this video, we will look at beforeCreate and created, where beforeCreated hook is before an instance has been fully initialized whereas the created hook is after an instance is created. This clip is from the chapter "Understanding the...
Curated Video
The Complete Vue.js Course for Beginners - Watchers
A watcher in Vue is a special feature that allows us to observe some data and perform specific actions when it changes. This clip is from the chapter "Advanced Concepts" of the series "The Complete Vue.js Course for Beginners".In this...
Curated Video
The Complete Vue.js Course for Beginners - Computed Property
A Computed property in Vue3 is used to declaratively describe a value that is dependent on other values. This clip is from the chapter "Advanced Concepts" of the series "The Complete Vue.js Course for Beginners".In this section, we will...
Curated Video
The Complete Vue.js Course for Beginners - Simple Form
In this video, we will create a simple form and we will do validation through Vue.js in it. This clip is from the chapter "Form and Validation" of the series "The Complete Vue.js Course for Beginners".In this section, we will look at...