feat(projects): add example for pro-naive-ui.

This commit is contained in:
Zheng-Changfu
2025-05-16 13:06:59 +08:00
committed by GitHub
parent 9a294204a2
commit ff83d333a5
22 changed files with 1172 additions and 1 deletions

10
src/plugins/components.ts Normal file
View File

@@ -0,0 +1,10 @@
import type { App } from 'vue';
import { ProDate, ProDateTime, ProInput, ProRate, create } from 'pro-naive-ui';
/** pro-naive-ui 支持配置表单的按需加载,所以需要注册 */
export function setupProNaiveComponents(app: App) {
const proNaive = create({
components: [ProInput, ProDate, ProDateTime, ProRate]
});
app.use(proNaive);
}

View File

@@ -1,5 +1,6 @@
export * from './loading';
export * from './nprogress';
export * from './components';
export * from './iconify';
export * from './dayjs';
export * from './app';