sutho100
1/29/2019 - 4:45 AM

Vue toggle text from button click

methods: {
      updateTitle: function(updatedTitle){
        if(this.clicked === true) {
        this.title = updatedTitle;
        console.log('this is clicked');
        this.clicked = false;
          } else {
              this.title = "toddy"
              this.clicked = true
          }
        console.log(this.clicked)
      }
    }