ERROR in src/app/coms/simple-icon-tips-tag/simple-icon-tips-tag.component.ts(17,5): error TS2581: Cannot find name '$'. Do you need to install type definitions for jQuery? Try `npm i @types/jquery` and then add `jquery` to the types field in your tsconfig.
直接运行
npm i @types/jquery
或者在 组件头部定义:
import { Component, Input, OnInit } from '@angular/core';
declare let $: any;