Currently, I am in the process of developing a component library for the organization where I work. To achieve this, I am utilizing vuetify
in combination with vue.js
.
One of the tasks at hand is to create custom components such as company-autocomplete
, which will leverage the functionality of the vuetify <autocomplete />
component. The main issue I am facing is how to enable the suggestions for <company-autocomplete />
to work seamlessly with my IDE.
Here is the code snippet for the salva-autocomplete
component:
<script setup lang="ts">
</script>
<template>
<v-autocomplete />
</template>
<style scoped>
</style>
Within the app.vue file, I have the following code section:
<salva-autocomplete #I want the suggestions to appear here />
Despite my efforts, I have not been successful in getting the suggestions for the salva-autocomplete
component to display as intended within the IDE.