vue-linkify
Version:
A simple Vue directive to turn URL's and emails into clickable links
17 lines (14 loc) • 422 B
JavaScript
/*global define*/
import linkify from 'linkifyjs/html'
(function () {
function install (el, binding) {
el.innerHTML = linkify(el.innerHTML, binding.value)
}
if (typeof exports === 'object') {
module.exports = install
} else if (typeof define === 'function' && define.amd) {
define([], function () { return install })
} else if (window.Vue) {
window.Vue.directive('linkified', install)
}
})()