Category: vueJs
-
vue methods
The v-on directive is used on the <div> element to listen to the ‘click’ event. When the ‘click’ event occurs the ‘writeText’ method is called and the text is changed. example
-
vue directives
Different Vue Directives The different Vue directives we use in this tutorial are listed below. Directive Details v-bind Connects an attribute in an HTML tag to a data variable inside the Vue instance. v-if Creates HTML tags depending on a condition. Directives v-else-if and v-else are used together with the v-if directive. v-show Specifies if…