2
0
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:
akshayitzme 2023-08-23 15:17:06 +05:30 committed by akshayitzme
parent f43161adf7
commit 53955045de

View 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>