[Vuejs]-Method "getChampionName" has type "undefined" in the component definition. Did you reference the function correctly?

0👍

It seems you didn’t import the method properly.
Change the import into:

import { getChampionName } from '@/api/search';

You can read more about import export in javascript here:
https://javascript.info/import-export

If you think you almost have the same question as this question, you can also refer to this:
Method "showDate" has type "undefined" in the component definition

Leave a comment