app.component.ts 356 B

12345678910111213
  1. import { Component } from '@angular/core';
  2. import Parse from "parse";
  3. Parse.serverURL = "https://web2023.fmode.cn/parse" // 配置服务器地址
  4. Parse.initialize("dev") // 配置应用名称
  5. @Component({
  6. selector: 'app-root',
  7. templateUrl: 'app.component.html',
  8. styleUrls: ['app.component.scss'],
  9. })
  10. export class AppComponent {
  11. constructor() {}
  12. }