Instructional Video5:41
Curated Video

The Complete Vue.js Course for Beginners - Methods and Parameters

Higher Ed
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...
Instructional Video4:26
Curated Video

The Complete Vue.js Course for Beginners - Data Child to Parent

Higher Ed
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...
Instructional Video6:31
Curated Video

The Complete Vue.js Course for Beginners - Create a Child Component in Vue.js

Higher Ed
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...
Instructional Video6:31
Curated Video

The Complete Vue.js Course for Beginners - For Loop Array of Objects

Higher Ed
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...
Instructional Video3:56
Curated Video

The Ultimate Excel VBA Course - Learn and Master VBA Fast - Message Box

Higher Ed
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.
Instructional Video2:22
Curated Video

The Ultimate Excel VBA Course - Learn and Master VBA Fast - Mid Function

Higher Ed
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...
Instructional Video3:22
Curated Video

The Ultimate Excel VBA Course - Learn and Master VBA Fast - InStr, InStrRev, and StrReverse

Higher Ed
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....
Instructional Video3:39
Curated Video

The Ultimate Excel VBA Course - Learn and Master VBA Fast - Trim, Len, and Space

Higher Ed
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...
Instructional Video4:12
Curated Video

The Ultimate Excel VBA Course - Learn and Master VBA Fast - Changing Case

Higher Ed
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...
Instructional Video6:19
Curated Video

The Complete Vue.js Course for Beginners - Dynamic Routing

Higher Ed
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...
Instructional Video5:11
Curated Video

The Complete Vue.js Course for Beginners - beforeUnmount and unmounted

Higher Ed
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...
Instructional Video4:35
Curated Video

The Complete Vue.js Course for Beginners - beforeUpdate and updated

Higher Ed
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...
Instructional Video3:10
Curated Video

The Complete Vue.js Course for Beginners - beforeCreate and created

Higher Ed
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...
Instructional Video3:21
Curated Video

The Complete Vue.js Course for Beginners - Watchers

Higher Ed
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...
Instructional Video3:56
Curated Video

The Complete Vue.js Course for Beginners - Computed Property

Higher Ed
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...
Instructional Video5:25
Curated Video

The Complete Vue.js Course for Beginners - Simple Form

Higher Ed
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...