mirror of
https://gitee.com/spark-store-project/spark-store
synced 2026-06-22 14:13:49 +08:00
fix(account): trim forum login password
This commit is contained in:
@@ -114,7 +114,7 @@ const password = ref("");
|
||||
const submitLogin = () => {
|
||||
emit("login", {
|
||||
identification: identification.value.trim(),
|
||||
password: password.value,
|
||||
password: password.value.trim(),
|
||||
});
|
||||
};
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user