mirror of
https://github.com/frappe/books.git
synced 2024-11-14 17:34:04 +00:00
18 lines
288 B
Vue
18 lines
288 B
Vue
|
<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>
|