gpt4 book ai didi

angular - 在 Angular 4 中集成 Typed.js

转载 作者:行者123 更新时间:2023-12-02 10:08:26 25 4
gpt4 key购买 nike

在 Angular 4 中集成 Typed.js 时,出现以下错误。

ERROR TypeError: __WEBPACK_IMPORTED_MODULE_2_typed_js__.Typed is not a constructor

我的组件是:

import { Component, OnInit } from '@angular/core';
import { Typed } from 'typed.js';
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.css']
})
export class HomeComponent implements OnInit {

ngOnInit() {
let options = {
strings: ["Books.", "Cinema.", "Paintings.","Music."],
typeSpeed: 100,
backSpeed: 100,
showCursor: true,
cursorChar: "|",
loop:true
}

let typed = new Typed(".typing-element", options);
}

}

我的 HTML 是:

<div class="container">
<div class="home-header-title">
<span class="title">what you like</span>
<span class="typing-element"></span>
</div>
</div>

最佳答案

你应该改变

import { Typed } from 'typed.js';

import * as Typed from 'typed.js';

关于angular - 在 Angular 4 中集成 Typed.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47130558/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com