typescript Nuxt3:如何为代理对象打字

bxgwgixi  于 2023-04-07  发布在  TypeScript
关注(0)|答案(1)|浏览(108)

输入Proxy对象的正确方法是什么?我正在编写一个v指令。
我的代码:

export const useProductImpressionTracking = {
  mounted: (el: HTMLElement, binding: any)  => {
    if (binding.value) {

我想将binding设置为一个类型而不是any,但如果我这样做,我的IDE(webstorm)说value不存在。
代码工作,我只是想正确地键入它

7uzetpgm

7uzetpgm1#

基于vue2的源代码你可以使用这个接口DirectiveBinding

export const useProductImpressionTracking = {
  mounted: (el: HTMLElement, binding: DirectiveBinding)  => {
    if (binding.value) {

相关问题