|
@@ -1,12 +1,13 @@
|
|
|
// page-home.component.ts
|
|
|
import { Component, AfterViewInit, ViewChild, ElementRef, OnDestroy } from '@angular/core';
|
|
|
+import { CommonModule } from '@angular/common';
|
|
|
import Swiper from 'swiper';
|
|
|
import * as echarts from 'echarts';
|
|
|
|
|
|
@Component({
|
|
|
selector: 'app-page-home',
|
|
|
standalone: true,
|
|
|
- imports: [],
|
|
|
+ imports: [CommonModule],
|
|
|
templateUrl: './page-home.html',
|
|
|
styleUrls: ['./page-home.scss']
|
|
|
})
|