OSDN Git Service

refactor: update code
[bytom/Byone.git] / src / popup.js
1 import App from './app'
2
3 class Popup {
4   constructor() {
5     if (localStorage.login == undefined) {
6       App.welcome()
7       return
8     }
9
10     App.launth()
11   }
12 }
13
14 const popup = new Popup()