@birdietorerik If this is Vuetify, then you probably should be using the v-model directive to both set the value and map selected values to a prop in your component:
<script>
let role = ref('name of default role here');
</script>
<template>
<v-select
v-model="role"
/>
</template>