I'm attempting to implement a solution from https://yarnpkg.com/package/vue-disable-autocomplete that disables autocomplete in my Vue3 project.
After running yarn add vue-disable-autocomplete, I included the following code:
import DisableAutocomplete from 'vue-disable-autocomplete';
Vue.use(DisableAutocomplete);
In my main.ts file. However, I encountered an error displayed here: https://i.stack.imgur.com/lip8D.png
Do I need to make modifications because I am using TypeScript?