const{createApp}=Vue const{createVuetify,useDisplay}=Vuetify var data={alert:{show:false,color:'success',text:'',timeout:0,},theme:{dark:false,},nav:{showDrawer:false,tab:'account',discussions:{targetPage:1,}},search:{width:80,text:null,loading:false,},usersMap:new Map([[1516,{uid:1516,url:'/u/22715b5d6a045c76656b506f300f3525',avatar:'/a/22715b5d6a045c76656b506f300f3525',username:'coldsword🤖',}],[2092,{uid:2092,url:'/u/0371070f6a045c756063546f41380435',avatar:'/a/0371070f6a045c756063546f41380435',username:'3az7qmfd🤖',}],[4989,{uid:4989,url:'/u/193374376a045c7369625f6f1926293d',avatar:'/a/193374376a045c7369625f6f1926293d',username:'zx9481🤖',}],[5252,{uid:5252,url:'/u/147859296a045c72626f546f2e000a28',avatar:'/a/147859296a045c72626f546f2e000a28',username:'Alilang🤖',}],[9146,{uid:9146,url:'/u/6b30441f6a045c7e616e506f3f33340f',avatar:'/a/6b30441f6a045c7e616e506f3f33340f',username:'AkiraSalvare🤖',}],[9722,{uid:9722,url:'/u/112406096a045c7e6768546f352a3b3e',avatar:'/a/112406096a045c7e6768546f352a3b3e',username:'windson🤖',}],[10323,{uid:10323,url:'/u/320d481d6a045d776368556f070e022d',avatar:'/a/320d481d6a045d776368556f070e022d',username:'weiming🤖',}],[16762,{uid:16762,url:'/u/330063076a045d71676c546f12066336',avatar:'/a/330063076a045d71676c546f12066336',username:'wangzi1993🤖',}],[16768,{uid:16768,url:'/u/30390a156a045d71676c5e6f2520202d',avatar:'/a/30390a156a045d71676c5e6f2520202d',username:'hugqq🤖',}],[17381,{uid:17381,url:'/u/1339475a6a045d706362576f390d1a34',avatar:'/a/1339475a6a045d706362576f390d1a34',username:'PatchouliTC🤖',}],]),} const App={setup(){const{smAndUp,mdAndUp}=useDisplay() return{smAndUp,mdAndUp}},data(){return data;},mounted(){const themeDark=localStorage.getItem("themeDark") if(themeDark!==null){this.theme.dark=JSON.parse(themeDark)}},methods:{successAlert(msg){this.alert={show:true,color:'success',text:msg,timeout:1500,}},failureAlert(msg){this.alert={show:true,color:'error',text:msg,timeout:5000,}},flipThemeDark(){this.theme.dark=!this.theme.dark localStorage.setItem("themeDark",JSON.stringify(this.theme.dark))},toSearch(){if(!this.search.text){this.failureAlert('搜索词不能为空') return} let keywords=this.search.text.trim() if(keywords.length<1){this.failureAlert('搜索词不能为空') return} if(keywords.length>100){this.failureAlert('搜索词过长') return} this.doSearch(keywords)},toReg(){window.location.href="/reg"},toLogin(){window.location.href="/login"},toPage(){let url=window.location.href url=url.replace(/(\/\d+)?$/,this.nav.discussions.targetPage>1?`/${this.nav.discussions.targetPage}`:'') window.location.href=url},getTimeInfo(t){if(!t){return ""} const now=new Date();const then=new Date(t);const diff=now-then;const minute=60*1000;const hour=minute*60;const day=hour*24;const month=day*30;const year=month*12;if(diff