| 1234567891011121314151617 |
- import { Component, OnInit, ViewChild, TemplateRef } from '@angular/core';
-
- @Component({
- selector: 'c3-tooltip',
- templateUrl: './c3-tooltip.component.html',
- styleUrls: ['./c3-tooltip.component.css'],
- exportAs: 'c3Tooltip'
- })
- export class C3Tooltip implements OnInit {
- @ViewChild(TemplateRef, { read: false }) template: TemplateRef<any>;
-
- constructor() { }
-
- ngOnInit() {
- }
-
- }
|