Skip to content

Commit

Permalink
fix(ui): use span to display value flexibly
Browse files Browse the repository at this point in the history
  • Loading branch information
lemredd committed Dec 27, 2022
1 parent 595f2b1 commit 2b28459
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/components/CalculatorContainer/EntryScreen.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,9 @@ defineProps<Props>()
</script>

<template>
<input
type="text"
class="entry-screen"
disabled
:value="valueToDisplay"
>
<span class="entry-screen">
{{ valueToDisplay }}
</span>
</template>

<style scoped lang="scss"></style>

0 comments on commit 2b28459

Please sign in to comment.