typescript Carousel Component TS - 迭代3

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript Carousel Component TS - 迭代3相关的知识,希望对你有一定的参考价值。

import { Component, OnInit, ElementRef } from '@angular/core';

@Component({
  // ...
})
export class CarouselComponent implements OnInit {

  // ...

  constructor(private elRef: ElementRef, private dataService: CarouselDataService) { }

  ngOnInit() {
    // ...
    this.elRef.nativeElement.style.setProperty('--font-size', this.elRef.nativeElement.clientWidth / 10 + "px");
  }

  // ...

}

以上是关于typescript Carousel Component TS - 迭代3的主要内容,如果未能解决你的问题,请参考以下文章

如何将 Javascript 文件导入 Typescript

如何禁用typescript中的隐式导入

Vue+TypeScript 实际开发项目 避坑指南

Vue.js 自定义指令使用 TypeScript 检测点击外部元素

将 .eslintrc 重新定位到父级后,ESLint 找不到配置“prettier/@typescript-eslint”

VueJS/Typescript 错误:找不到模块“我的模块”或其相应的类型声明