Reputation: 63
I am new to angular right now angular 7 using.I want to create angular elements so importing import { createCustomElement } from '@angular/elements' but it giving error Cannot find module '@angular/elements'. Any help will helpful.
Upvotes: 5
Views: 8689
Reputation: 471
Another alternative
ng add @angular/elements --project=*your_project_name*
Upvotes: 1
Reputation: 29775
You have probably not installed @angular/elements
. Please install it.
Run
npm install @angular/elements
Upvotes: 22