This commit is contained in:
2017-02-20 14:09:00 -07:00
parent 1335180377
commit 97f58b0fb3

View File

@@ -31,9 +31,9 @@
const props = [ const props = [
'firstname', 'firstname',
'lastname', 'lastname',
'email',
'city', 'city',
'state', 'state',
'email',
]; ];
return props.every(prop => !!value[prop]); return props.every(prop => !!value[prop]);
@@ -42,7 +42,6 @@
}, },
computed: { computed: {
name() { name() {
console.og
return `${this.customer.firstname} ${this.customer.lastname}`; return `${this.customer.firstname} ${this.customer.lastname}`;
}, },
}, },