app.component.ts 333 B

12345678910111213141516
  1. import { Component } from '@angular/core';
  2. import * as Parse from "parse";
  3. Parse.initialize("dev");
  4. (Parse as any).serverURL = 'http://web2023.fmode.cn:9999/parse'
  5. @Component({
  6. selector: 'app-root',
  7. templateUrl: 'app.component.html',
  8. styleUrls: ['app.component.scss'],
  9. })
  10. export class AppComponent {
  11. constructor() {
  12. }
  13. }