12345678910111213141516171819202122232425262728 |
- import { Component, OnInit } from '@angular/core';
- import Parse from "parse"
- @Component({
- selector: 'app-mine',
- templateUrl: './mine.page.html',
- styleUrls: ['./mine.page.scss'],
- })
- export class MinePage implements OnInit {
- constructor() {
-
- }
-
-
- user:Parse.User|undefined
- async ngOnInit() {
- this.user = await Parse.User.current()
- setInterval(async ()=>{
- this.user = await Parse.User.current()
- },1000)
- }
- logout(){
- Parse.User.logOut();
- }
- }
|