UNPKG

vue-quick-chat

Version:

This vue component is a simple chat that can be easily imported and used in your project.

14 lines 289 B
import linkifyElement from 'linkifyjs/element'; export default { props: { linkOptions: { type: Object, required: true } }, mounted() { if(this.$refs['message-content']){ linkifyElement(this.$refs['message-content'], this.linkOptions, document) } }, }