Browse Source

feat:page-home

0235967 3 weeks ago
parent
commit
b9a97b100e
1 changed files with 2 additions and 1 deletions
  1. 2 1
      travel-web/src/modules/pc-home/pages/page-home/page-home.ts

+ 2 - 1
travel-web/src/modules/pc-home/pages/page-home/page-home.ts

@@ -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']
 })