Directives in 2.0 - Fundamentals (Part 3)

Tutorial covering Directives in 2.0. Directives are like mini-functions that we add to html elements to “boost” them with extra functionality. These are common functions that we tend to find ourselves re-writing every time we make a new website. For example binding values of inputs to variables, tying events to html elements, hiding elements until they load and much more. We can replicate this functionality using easy directives. All directives are prefixed with a “v-“ and are attached directly to H
Back to Top