1
0
mirror of https://github.com/zclzone/vue-naive-admin.git synced 2026-01-22 23:50:22 +08:00

style: lint

This commit is contained in:
zclzone
2024-06-06 18:05:36 +08:00
parent 98f9d5893a
commit a67510fe34
72 changed files with 542 additions and 389 deletions

View File

@@ -21,7 +21,7 @@
</template>
<script setup>
import { useUserStore, useAuthStore, usePermissionStore } from '@/store'
import { useAuthStore, usePermissionStore, useUserStore } from '@/store'
import { RoleSelect } from '@/layouts/components'
import api from '@/api'
@@ -35,7 +35,7 @@ const options = reactive([
label: '个人资料',
key: 'profile',
icon: () => h('i', { class: 'i-material-symbols:person-outline text-14' }),
show: computed(() => permissionStore.accessRoutes?.some((item) => item.path === '/profile')),
show: computed(() => permissionStore.accessRoutes?.some(item => item.path === '/profile')),
},
{
label: '切换角色',
@@ -71,7 +71,8 @@ function handleSelect(key) {
async confirm() {
try {
await api.logout()
} catch (error) {
}
catch (error) {
console.error(error)
}
authStore.logout()