Browse Source

feat(openiddict): 增加applications组件.

pull/1056/head
colin 1 year ago
parent
commit
8966c213d6
  1. 7
      apps/vben5/packages/@abp/openiddict/src/components/applications/ApplicationModal.vue
  2. 7
      apps/vben5/packages/@abp/openiddict/src/components/applications/ApplicationTable.vue
  3. 1
      apps/vben5/packages/@abp/openiddict/src/components/index.ts
  4. 2
      apps/vben5/packages/@abp/openiddict/src/index.ts

7
apps/vben5/packages/@abp/openiddict/src/components/applications/ApplicationModal.vue

@ -0,0 +1,7 @@
<script setup lang="ts"></script>
<template>
<div></div>
</template>
<style scoped></style>

7
apps/vben5/packages/@abp/openiddict/src/components/applications/ApplicationTable.vue

@ -0,0 +1,7 @@
<script setup lang="ts"></script>
<template>
<div></div>
</template>
<style scoped></style>

1
apps/vben5/packages/@abp/openiddict/src/components/index.ts

@ -0,0 +1 @@
export { default as ApplicationTable } from './applications/ApplicationTable.vue';

2
apps/vben5/packages/@abp/openiddict/src/index.ts

@ -1 +1,3 @@
export * from './components';
export * from './constants';
export * from './types';

Loading…
Cancel
Save