Noty を使用して通知サービスを作成しましたが、アニメーションや表示が適切に行われません。どこに行方不明ですか?? スクリプトを追加する必要がありますか?
import { Injectable } from '@angular/core';
declare let require;
const lodash = require('lodash');
const Noty = require('noty');
@Injectable({
providedIn: 'root'
})
export class NotificationServiceService {
constructor() { }
showNotification(text){
new Noty(lodash.assign({
text:text,
type: 'success',
layout: 'topRight',
killer:true,
timeout: 3000,
})).show();
}
}
これはサービスのコードです。