Directives
Directives are reusable Vue.js instructions that extend HTML elements with custom behavior. They provide common functionality like detecting clicks outside elements, preloading resources on hover, or sanitizing HTML content.
- Hover Load A Vue Directive to help with preloading resources when hovering over an element.
- Outside A Vue Directive to call a callback when a supported event type occurs outside of the element the directive is bound to.
- Resize Observer A Vue Directive to get notified whenever a given element's size changes.
- Safe HTML A Vue Directive to sanitize HTML to avoid any XSS vulnerabilities.
- Safe Link A Vue directive to make the hyperlinks secure by default.