typescript 在Angular应用中显示应用版本。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 在Angular应用中显示应用版本。相关的知识,希望对你有一定的参考价值。

const { version: appVersion } = require('../../package.json')
// this loads package.json
// then you destructure that object and take out the 'version' property from it
// and finally with ': appVersion' you rename it to const appVersion

@Component({
  selector: 'stack-overflow',
  templateUrl: './stack-overflow.component.html'
})
export class StackOverflowComponent {
  public appVersion

  constructor() {
    this.appVersion = appVersion
  }
}

以上是关于typescript 在Angular应用中显示应用版本。的主要内容,如果未能解决你的问题,请参考以下文章

typescript 用于在输入中显示/隐藏密码的Angular7指令

typescript 用于在输入中显示/隐藏密码的Angular7指令

Angular2,Typescript:如何在每页显示一个元素的数组中检查单选按钮?

使用 Typescript 从 Angular 6 的在线链接中显示 Pdf

根据下拉列表中的选定值显示表单字段Angular TypeScript

从Angular TypeScript中来自firestore的数据中获取未定义