2
0
mirror of https://github.com/frappe/books.git synced 2025-02-11 16:39:25 +00:00

Password control

This commit is contained in:
Suraj Shetty 2018-06-19 09:29:43 +05:30
parent 7577a2d0e5
commit 999cb583f3

View File

@ -0,0 +1,18 @@
<script>
import Base from "./Base";
export default {
name: "Password",
extends: Base,
methods: {
getInputAttrs() {
return {
id: this.id,
type: 'password',
value: this.value,
required: this.docfield.required
};
},
}
};
</script>