cannot find module import { NodeService } from '@/service/nodeservice'; #3352
Unanswered
URAN2382
asked this question in
PrimeNG Blocks
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
cannot find module import for tree
import { Component, OnInit } from '@angular/core';
import { MessageService, TreeNode } from 'primeng/api';
import { NodeService } from '@/service/nodeservice';
import { Tree } from 'primeng/tree';
import { ToastModule } from 'primeng/toast';
@component({
selector: 'app-tree-comp',
standalone: true,
templateUrl: './tree-comp.component.html',
styleUrl: './tree-comp.component.css',
imports: [Tree, ToastModule],
providers: [MessageService, NodeService]
})
Beta Was this translation helpful? Give feedback.
All reactions