Click event of vue vector element

Implementation code: you can enter the desired event effect in click, the parameter id is the id of the element

    init(div) {
      $("#" + div).css("cursor", "pointer");
      $("#" + div).click(() => {
       
      });
    }, 

    this.init("id");

 

Guess you like

Origin www.cnblogs.com/HKSam/p/12746401.html