defineComponent — explicit component definition. script setup — syntax sugar.
defineComponent:
1import { defineComponent, ref } from "vue"23export default defineComponent({4 props: {5 msg: String6 },7 setup(props) {8 const count = ref(0)9 return { count }10 }11})
script setup:
1<script setup lang="ts">2import { ref } from "vue"34const props = defineProps<{5 msg: string6}>()78const count = ref(0)9</script>
Benefits of script setup: