docs: default value in select menu basic example

This commit is contained in:
Benjamin Canac
2023-05-11 14:17:28 +02:00
parent 6c35ee9270
commit 24434dc561
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
<script setup>
const people = ['Wade Cooper', 'Arlene Mccoy', 'Devon Webb', 'Tom Cook', 'Tanya Fox', 'Hellen Schmidt', 'Caroline Schultz', 'Mason Heaney', 'Claudie Smitham', 'Emil Schaefer']
const selected = ref()
const selected = ref(people[0])
</script>
<template>