vue自定义指令指定文字高亮

自定义指令

除了核心功能默认内置的指令 (vmodelvshow),Vue 也允许注册定义指令。注意,在 Vue2.0 中,代码复用抽象的主要形式是组件。然而,有的情况下,你仍然需要对普通 DOM 元素进行底层操作,这时候就会用到定义指令

钩子函数

一个指令定义对象可以提供如下几个钩子函数 (均为可选):

指令钩子函数会被传入以下参数

定义指令:指定文字高亮

创建定义指令

项目 src 目录创建定义指令目录 directives ,并在目录创建 index.jsdirectives.js 文件
在这里插入图片描述

index.js:
/*
 * @Description: 自定义指令
 */
import directives from './directives';

export default {
  	install(Vue) {
    	Object.keys(directives).forEach((key) => {
      		Vue.directive(key, directives[key]);
    	})
 	},
}
directives.js:
/**
 * @desc 指定文字高亮指令
 * @param hText 需要高亮的文字
 * @param text 全部文字
 * @param color 高亮文字颜色
 */
const textLight = {
  	bind(el, binding, vnode) {
    	const { value } = binding;
    	if (value && typeof value === 'object') {
     	 	const { hText, text, color } = value;
    		el.innerHTML = text.replace(new RegExp(hText, 'ig'), (t) => {
      	  		return `<span style="color: ${color}">${t}</span>`;
	     	});
   		}
 	},
  	update(el, binding, vnode) {
	    const { value } = binding;
	    if (value &amp;&amp; typeof value === 'object') {
	      	const { hText, text, color } = value;
	      	el.innerHTML = text.replace(new RegExp(hText, 'ig'), (t) => {
	        	return `<span style="color: ${color}">${t}</span>`;
	      	});
	    }
    },
};

export default {
  	textLight
};
main.js:
......

import Directives from './directives';
Vue.use(Directives);

使用定义指令

<template>
  	<div class="demo">
   	 	<p v-textLight="{ hText: hText1, text: text, color: color }"></p>
    	<p v-textLight="{ hText: hText2, text: text, color: color }"></p>
  	</div>
</template>

<script>
export default {
  	data() {
    	return {
      		hText1: '自定义指令', // 一个高亮文字
      		hText2: '核心|自定义指令', // 多个高亮文字
      		text: '除了核心功能默认内置的指令 (v-model 和 v-show),Vue 也允许注册自定义指令。',
      		color: '#c7254e'
    	}
  	}
}
</script>

效果

在这里插入图片描述

原文地址:https://blog.csdn.net/weixin_45426836/article/details/132854560

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_41024.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注