What are Directives in VUE.js, List some of them you used?

devquora
devquora

Posted On: Jun 20, 2024

 

The concept of directive in Vue js is drastically simpler than that in Angular. Vue.js directives provides a way to extend HTML with new attributes and tags. Vue.js has a set of built-in directives which offers extended functionality to your applications.You can also write your custom directives in Vue.js .

Below are list of commonly used directives in Vue.js

  • v-show
  • v-if
  • v-model
  • v-else
  • v-on

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Vue.js Interview Questions

    What is Vue.js?

    Vue.js is a progressive JavaScript framework that simplifies UI development. It offers reactive data binding, component-based architecture, and a flexible ecosystem. Vue's simplicity and versatility m..

    Vue.js Interview Questions

    List some features of Vue.js.

    Vue.js offers templates for easy UI creation, reactive data binding, component-based architecture, built-in transitions for animations, and dynamic routing for single-page applications. These features..

    Vue.js Interview Questions

    Explain Life cycle of Vue Instance.

    The Vue.js lifecycle includes stages like creation for initialization, mounting for DOM insertion, updating for reactivity, and destroying for cleanup. Each stage provides hooks to manage component be..