HTML에서 구성 요소의 선택 도구 태그 제거/바꾸기 이 질문에는 이미 다음과 같은 답이 있습니다. 각 구성 요소로 생성된 호스트 HTML 요소 선택기 제거 (5개 답변) 마감됨7년 전에. Angular 2(버전 2.0.0-alpha.46)를 시작하여 몇 가지 구성 요소를 만들고 있습니다. 아래 코드로 구성 요소를 생성하는 경우: 유형 스크립트: import {ComponentMetadata as Component, ViewMetadata as View} from 'angular2/angular2'; @Component({ selector: 'my-component' }) @View({ template: 'Hello My component' }) export class MyCompoent{ constru..