首先先引入vue的两个方法
import {resolveDirective, withDirectives} from 'vue'
在setup
中需要引入自定义的指令
// 方法的参数是指令的名称,如果没找到就会报一个warning,并且返回undefined
const lazyLoad = resolveDirective('lazy');
接下来就可以在代码中进行使用
const renderer = withDirectives(h('img'),[[lazyLoad, img.src]])