7 changed files with 43 additions and 2 deletions
@ -0,0 +1,15 @@ |
|||
<script lang="ts" setup> |
|||
import { Page } from '@vben/common-ui'; |
|||
|
|||
import { ScopeTable } from '@abp/openiddict'; |
|||
|
|||
defineOptions({ |
|||
name: 'OpenIddictScopes', |
|||
}); |
|||
</script> |
|||
|
|||
<template> |
|||
<Page> |
|||
<ScopeTable /> |
|||
</Page> |
|||
</template> |
|||
@ -1,2 +1,3 @@ |
|||
export { default as ApplicationTable } from './applications/ApplicationTable.vue'; |
|||
export { default as AuthorizationTable } from './authorizations/AuthorizationTable.vue'; |
|||
export { default as ScopeTable } from './scopes/ScopeTable.vue'; |
|||
|
|||
@ -0,0 +1,7 @@ |
|||
<script setup lang="ts"></script> |
|||
|
|||
<template> |
|||
<div></div> |
|||
</template> |
|||
|
|||
<style scoped></style> |
|||
@ -0,0 +1,7 @@ |
|||
<script setup lang="ts"></script> |
|||
|
|||
<template> |
|||
<div></div> |
|||
</template> |
|||
|
|||
<style scoped></style> |
|||
Loading…
Reference in new issue