mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: import error
This commit is contained in:
parent
9dfd696398
commit
2948bc9e00
|
|
@ -150,7 +150,7 @@
|
|||
</template>
|
||||
<script setup lang="ts">
|
||||
import { ref, onMounted, watch, computed, reactive } from 'vue'
|
||||
import { permissionOptions } from '@/views/system/resource-authorization/constant'
|
||||
import { getPermissionOptions } from '@/views/system/resource-authorization/constant'
|
||||
import AuthorizationApi from '@/api/system/resource-authorization'
|
||||
import { MsgSuccess, MsgConfirm } from '@/utils/message'
|
||||
import { t } from '@/locales'
|
||||
|
|
@ -159,7 +159,9 @@ const { user } = useStore()
|
|||
const props = defineProps<{
|
||||
type: string
|
||||
}>()
|
||||
|
||||
const permissionOptions = computed(() => {
|
||||
return getPermissionOptions()
|
||||
})
|
||||
const drawerVisible = ref(false)
|
||||
const multipleTableRef = ref()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue