Props — data passed from parent to child component. Data — internal component state.
Props:
Data:
1<!-- Parent component -->2<template>3 <Child :message="hello" :count="5" />4</template>56<!-- Child component -->7<script setup>8const props = defineProps<{9 message: string10 count: number11}>()1213// data() equivalent in Options API14const internalState = ref(0) // mutable internal state15</script>
Key differences: