The `v-bind` directive in Vue.js is used to dynamically bind data to HTML attributes or component props. It allows you to update the value of an attribute based on the data in your Vue instance. For example, `v-bind:href="url"` binds the `href` attribute of an anchor tag to the `url` data property.
It is used to assign attribute to HTML tag.