app.component.ts 252 Bytes
Newer Older
李彥志's avatar
李彥志 committed
1
import { Component } from '@angular/core';
李彥志's avatar
李彥志 committed
2
import { appPath } from './app-path.const';
李彥志's avatar
李彥志 committed
3 4 5 6 7 8 9

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
李彥志's avatar
李彥志 committed
10
  path = appPath;
李彥志's avatar
李彥志 committed
11
}