美文网首页
Vue中给button绑定事件

Vue中给button绑定事件

作者: 陈怀哲 | 来源:发表于2018-11-12 11:40 被阅读23次
    <button class="forget_btn" v-on:click="forget" >忘记密码</button>
    
      methods: {
        login() {
          if (!this.userName) {
            this.$message.error("请输入用户名");
            return;
          }
          if (!this.password) {
            this.$message.error("请输入密码");
            return;
          }
          this.$router.push("/");
        },
        forget() {
          this.$router.push("/login/forgetpwd");
        }
    
    

    相关文章

      网友评论

          本文标题:Vue中给button绑定事件

          本文链接:https://www.haomeiwen.com/subject/uavqfqtx.html