I have a select options that is dynamically populated (vuejs):
<select v-model="form.categorie">
<option
v-for="cat in userStore.categories"
:value="cat.id"
:key="cat.id"
>
{{ cat.intitule }}
</option>
</select>
and then I have a link :
<router-link :to="{ name: 'profil', params: { id: userStore.user } }">
<FontAwesome icon="circle-info" />
manage categories
</router-link>
How do I add that link to the end of the list of the select options (despite this not being an option to select)?
The goal is that the "manage categories" button displays in the select list of categories, not underneath since you don't need to the link "manage options" if you don't select options.