1
0
Fork 0
forked from Kispi/Core
HGOE-SaS/webapp/src/components/atoms/AtomFactorInput.vue
Simon Giesel 23aad9b667
All checks were successful
continuous-integration/drone/push Build is passing
feat(webapp): add admin settings
2023-06-25 15:34:09 +02:00

23 lines
No EOL
446 B
Vue

<template>
<div class="relative">
<AtomInput
v-model="modelValue"
type="number"
class="pr-7 text-right"
step="1"
min="1"
/>
<span class="pointer-events-none absolute top-2/4 -ml-6 -mt-3 opacity-50">x</span>
</div>
</template>
<script lang="ts" setup>
import AtomInput from './AtomInput.vue';
/* global defineModel */
const modelValue = defineModel();
</script>
<style lang="scss" scoped>
</style>