use the MessageBox component of element-ui as a pop-up window, but how to refresh the page after adding it?
addUserData(done) {
this.$ajax.post(this.$api.departmentData, this.form).then(res => {
if (res.data.status == 200) {
this.addUser = false;
this.$message({
type: "success",
message: "!"
});
}
});
},