feat: pc端单点登录,隐藏上边栏左边栏

This commit is contained in:
GAOANG
2024-04-22 09:13:18 +08:00
parent 8b0174ddb9
commit 2c8bc68c7d
5 changed files with 77 additions and 8 deletions

View File

@ -2,6 +2,7 @@ import { ref } from 'vue';
const isEditorOpen = ref(false);
const hasAjaxError = ref(false);
const isSingleLogin = ref(false);
function ajaxError() {
hasAjaxError.value = true;
@ -14,7 +15,8 @@ export default function() {
return {
isEditorOpen,
hasAjaxError,
ajaxError
ajaxError,
isSingleLogin
}
}