From 53955045de65a98a56a93204b8575765325dd349 Mon Sep 17 00:00:00 2001 From: akshayitzme <akshaypooloth1@gmail.com> Date: Wed, 23 Aug 2023 15:17:06 +0530 Subject: [PATCH] feat: floating label float input --- src/components/NeuPOS/FloatingLabelFloatInput.vue | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/components/NeuPOS/FloatingLabelFloatInput.vue diff --git a/src/components/NeuPOS/FloatingLabelFloatInput.vue b/src/components/NeuPOS/FloatingLabelFloatInput.vue new file mode 100644 index 00000000..1daa9892 --- /dev/null +++ b/src/components/NeuPOS/FloatingLabelFloatInput.vue @@ -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>