25 lines
445 B
JavaScript
Vendored
25 lines
445 B
JavaScript
Vendored
module.exports = {
|
|
/**
|
|
* The component's data.
|
|
*/
|
|
data() {
|
|
return {
|
|
form: new SparkForm({
|
|
current_password: '',
|
|
password: '',
|
|
password_confirmation: ''
|
|
})
|
|
};
|
|
},
|
|
|
|
|
|
methods: {
|
|
/**
|
|
* Update the user's password.
|
|
*/
|
|
update() {
|
|
Spark.put('/settings/password', this.form);
|
|
}
|
|
}
|
|
};
|