2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 19:29:02 +00:00
books/ui/components/controls/Float.vue
2018-06-27 20:08:27 +05:30

31 lines
634 B
Vue

<script>
import Base from './Base';
export default {
extends: Base,
computed: {
inputClass() {
return ['text-right']
}
},
methods: {
getInputListeners() {
return {
change: e => {
this.handleChange(e.target.value);
},
focus: e => {
setTimeout(() => this.$refs.input.select(), 100);
}
};
},
validate(value) {
return !isNaN(value);
},
parse(value) {
return Number(value);
}
}
}
</script>