vue 3.0 初始化时如何调用methods里面的方法

 methods: {

    Tab(type) {

      this.tabActive = type;

      window.location.href.split('=')[1]=type;

    },

    Knockout() {

      this.$confirm("是否选用?", "提示", {

        type: "warning",

      })

        .then(() => {

          this.$message({

            type: "success",

            message: "成功!",

          });

        })

        .catch(() => {

          this.$message({

            type: "info",

            message: "取消",

          });

        });

    },

    mounted () { //这个属性就可以,在里面声明初始化时要调用的方法即可

      var type="aa";

      if(window.location.href.split('=')[1]==undefined){

        this.handleTab("aa");

      }else{

        this.Tab(window.location.href.split('=')[1])

      }

    }

  },

你可能感兴趣的:(javascript,前端,vue)