mirror of
https://github.com/frappe/books.git
synced 2025-02-02 12:08:27 +00:00
feat: floating label float input
This commit is contained in:
parent
f43161adf7
commit
53955045de
14
src/components/NeuPOS/FloatingLabelFloatInput.vue
Normal file
14
src/components/NeuPOS/FloatingLabelFloatInput.vue
Normal file
@ -0,0 +1,14 @@
|
||||
<script lang="ts">
|
||||
import { defineComponent } from 'vue';
|
||||
import FloatingLabelInputBase from './FloatingLabelInputBase.vue';
|
||||
|
||||
export default defineComponent({
|
||||
name: 'FloatingLabelFloatInput',
|
||||
extends: FloatingLabelInputBase,
|
||||
computed: {
|
||||
inputType() {
|
||||
return 'number';
|
||||
},
|
||||
},
|
||||
});
|
||||
</script>
|
Loading…
x
Reference in New Issue
Block a user