Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ZnPdCo committed Dec 2, 2024
1 parent cbf82cb commit dd3e039
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion frontend/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ import { Menu, MenuItem, SuiContainer } from 'vue-fomantic-ui'
const title = window.title
const isAdmin = window.isAdmin
const loggedIn = window.loggedIn
const backendVersion = window.backendVersion
const frontendVersion = config.version
const backendVersion = window.backendVersion
if (frontendVersion !== backendVersion) {
console.error('前端版本与后端版本不匹配!')
}
</script>

<template>
Expand Down

0 comments on commit dd3e039

Please sign in to comment.