Skip to content
Snippets Groups Projects
Commit adbe0f73 authored by Sander August Heggland Schrader's avatar Sander August Heggland Schrader
Browse files

Fixed lint

parent 401bd0b5
Loading
......@@ -58,15 +58,14 @@ export default {
rules: {
required: (value) => !!value || "Feltet er påkrevd",
min: (v) => v.length >= 8 || "Minimum 8 tegn",
passwordConfirmation: (v) => v === this.user.password || "Passordene må være like"
passwordConfirmation: (v) =>
v === this.user.password || "Passordene må være like",
},
};
},
methods: {
async setNewPassword() {
},
async setNewPassword() {},
validate() {
this.$refs.form.validate();
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment