Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
da-in committed Jan 14, 2024
1 parent cccbb61 commit 6c9d667
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pages/play/_components/Ground.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ const props = defineProps({
height: Number
})
const heightRef = computed(() => `${props.height}px`)
const heightRef = computed(() => {
alert(`${props.height}px`)
return `${props.height}px`
})
</script>
<style scoped>
Expand Down

0 comments on commit 6c9d667

Please sign in to comment.