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