To do that you need to create the next folder structure
-| pages/
---| profile/
-----| index.vue
-----| [usernane].vue
and then in your component you can get the username with
<script setup lang="ts">
const route = useRoute()
console.log(route.params.username)
</script>