6 changed files with 50 additions and 0 deletions
@ -0,0 +1,15 @@ |
|||||
|
<script lang="ts" setup> |
||||
|
import { Page } from '@vben/common-ui'; |
||||
|
|
||||
|
import { SystemSetting } from '@abp/settings'; |
||||
|
|
||||
|
defineOptions({ |
||||
|
name: 'SystemSettings', |
||||
|
}); |
||||
|
</script> |
||||
|
|
||||
|
<template> |
||||
|
<Page> |
||||
|
<SystemSetting /> |
||||
|
</Page> |
||||
|
</template> |
||||
@ -1 +1,3 @@ |
|||||
export { default as SettingDefinitionTable } from './definitions/SettingDefinitionTable.vue'; |
export { default as SettingDefinitionTable } from './definitions/SettingDefinitionTable.vue'; |
||||
|
export { default as SystemSetting } from './settings/SystemSetting.vue'; |
||||
|
export { default as UserSetting } from './settings/UserSetting.vue'; |
||||
|
|||||
@ -0,0 +1,7 @@ |
|||||
|
<script setup lang="ts"></script> |
||||
|
|
||||
|
<template> |
||||
|
<div></div> |
||||
|
</template> |
||||
|
|
||||
|
<style scoped></style> |
||||
@ -0,0 +1,10 @@ |
|||||
|
<script setup lang="ts"> |
||||
|
import { Page } from '@vben/common-ui'; |
||||
|
import { $t } from '@vben/locales'; |
||||
|
</script> |
||||
|
|
||||
|
<template> |
||||
|
<Page :title="$t('AbpSettingManagement.Settings')" /> |
||||
|
</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