Currently, I am tackling the issue with checkboxes in Vuetify. The challenge lies in achieving a different output for the second {{ selected.join() }}. For example, when I select the checkbox labeled "Social Media," I receive the text "On our social media" at the first {{ selected.join() }}, but I desire a distinct string (such as "on our social media page") for the second occurrence.
<v-checkbox
v-model="selected"
label="Social Media"
value="On our social media"
></v-checkbox>
<v-checkbox
v-model="selected"
label="Website"
value="on our website"
></v-checkbox>
Output:
{{ selected.join() }}
......
{{ selected.join() }}