diff --git a/docs/components/content/examples/SelectMenuExampleObjects.vue b/docs/components/content/examples/SelectMenuExampleObjects.vue
index aa050124..766e1d7d 100644
--- a/docs/components/content/examples/SelectMenuExampleObjects.vue
+++ b/docs/components/content/examples/SelectMenuExampleObjects.vue
@@ -28,11 +28,9 @@ const selected = ref(people[0])
-
-
-
-
- {{ selected.label }}
+
+
+
diff --git a/docs/components/content/examples/SelectMenuExampleObjectsValueAttribute.vue b/docs/components/content/examples/SelectMenuExampleObjectsValueAttribute.vue
index 291b4ec5..11dc181e 100644
--- a/docs/components/content/examples/SelectMenuExampleObjectsValueAttribute.vue
+++ b/docs/components/content/examples/SelectMenuExampleObjectsValueAttribute.vue
@@ -13,9 +13,7 @@ const people = [{
name: 'Tom Cook'
}]
-const selected = ref(people[0].id)
-
-const current = computed(() => people.find(person => person.id === selected.value))
+const selected = ref(people[0].name)
@@ -23,11 +21,7 @@ const current = computed(() => people.find(person => person.id === selected.valu
v-model="selected"
:options="people"
placeholder="Select people"
- value-attribute="id"
+ value-attribute="name"
option-attribute="name"
- >
-
- {{ current.name }}
-
-
+ />
diff --git a/docs/components/content/examples/SelectMenuExampleSearchAttributes.vue b/docs/components/content/examples/SelectMenuExampleSearchAttributes.vue
index f6b0d7a4..008a6f63 100644
--- a/docs/components/content/examples/SelectMenuExampleSearchAttributes.vue
+++ b/docs/components/content/examples/SelectMenuExampleSearchAttributes.vue
@@ -1,11 +1,11 @@