Vue.component('login-panel', { template: `
`, data: function () { return { user: "name", pwd:"password", showError:false, }; }, methods: { checkData(){ if(this.user === "name" && this.pwd === "password"){ console.log("correct"); this.$parent.close(); }else{ console.log("wrong"); this.showError=true; } }, logIn(){ $parent.close(); }, }, });