Props

PHOTO EMBED

Sun Nov 12 2023 11:31:09 GMT+0000 (Coordinated Universal Time)

Saved by @Paloma #vue.js

const props = defineProps<{
  msg: string
  initialNumber: number
}>()

const numberMultiplied = computed(() => {
  return multiplication(props.initialNumber)
})

<div>{{ numberMultiplied }}</div>

//INTO THE IMPORT OF THE COMPONENT

<HelloWorld msg="You did it!" initial-number="5" />
content_copyCOPY