[Vuejs]-Cannot find exported component in Vuejs project

0👍

Apparently the way I imported the Icon component wasn’t correct, and it’s supposed to be like

import { Icon, IconModel } from '@ComponentLib/components';

And then add Icon component to @Component({components: {Icon }}) decorator.

Leave a comment