Point buys can now guess cost while dragging slide

This commit is contained in:
Stefan Zermatten
2022-11-22 01:45:25 +02:00
parent a3355dd988
commit 063d4288ef
2 changed files with 53 additions and 9 deletions

View File

@@ -10,6 +10,9 @@
:disabled="isDisabled"
:outlined="!regular"
@change="change"
@input="e => $emit('input', e)"
@end="e => $emit('end', e)"
@start="e => $emit('start', e)"
@focus="focused = true"
@blur="focused = false"
>
@@ -23,12 +26,12 @@
</template>
<script lang="js">
import SmartInput from '/imports/client/ui/components/global/SmartInputMixin.js';
import SmartInput from '/imports/client/ui/components/global/SmartInputMixin.js';
export default {
mixins: [SmartInput],
props: {
regular: Boolean,
},
};
export default {
mixins: [SmartInput],
props: {
regular: Boolean,
},
};
</script>