This commit is contained in:
xuziqiang
2024-05-15 17:29:42 +08:00
commit d0155dbe3c
7296 changed files with 1832517 additions and 0 deletions

20
lib/paas/view/index.ts Normal file
View File

@@ -0,0 +1,20 @@
import { withInstall } from '/nerv-lib/util';
import application from './system/application/application.vue';
import viewAddForm from './service/add-form.vue';
import viewEditForm from './service/edit-form.vue';
import viewListTable from './service/list-table.vue';
import viewDetail from './service/detail.vue';
import viewEmpty from './service/empty.vue';
// import viewSideNav from './system/layout/nav-content.vue';
import viewSideNav from './service/side-nav.vue';
import viewContent from './system/layout/content.vue';
export const NsApplication = withInstall(application);
export const NsViewAddForm = withInstall(viewAddForm);
export const NsViewEditForm = withInstall(viewEditForm);
export const NsViewListTable = withInstall(viewListTable);
export const NsViewDetail = withInstall(viewDetail);
export const NsViewEmpty = withInstall(viewEmpty);
export const NsViewSideNav = withInstall(viewSideNav);
export const NsViewContent = withInstall(viewContent);