update project config to match official create vue recommendations
This commit is contained in:
@@ -59,6 +59,7 @@ defineExpose({ handleKeypress })
|
||||
</li>
|
||||
<SearchResult
|
||||
v-for="result in results"
|
||||
:key="result.id"
|
||||
:result="result"
|
||||
:active-result="activeResult"
|
||||
@go-to-note="emit('createLink', result.title)"
|
||||
|
||||
@@ -14,7 +14,7 @@ const props = defineProps<{
|
||||
<div class="badge-outline badge">{{ props.references.length }}</div>
|
||||
</span>
|
||||
</li>
|
||||
<li v-for="reference in props.references">
|
||||
<li v-for="reference in props.references" :key="reference.id">
|
||||
<a class="rounded-md" @click="setActiveNote(reference.id)">
|
||||
<i class="far fa-file-alt fa-fw" />
|
||||
{{ reference.title }}
|
||||
|
||||
Reference in New Issue
Block a user