I am impressed by how easily you can create small components within the main component file in React. Is it possible to do something similar with Vue 3 composition API?
For example:
Component.vue
<script setup>
const SmallComponent = <div>Test</div>
</script>
<template>
<SmallComponent/>
</template>