diff --git a/apps/web-naive/src/adapter/component/index.ts b/apps/web-naive/src/adapter/component/index.ts
index 6fa96510..a033f6f2 100644
--- a/apps/web-naive/src/adapter/component/index.ts
+++ b/apps/web-naive/src/adapter/component/index.ts
@@ -19,6 +19,8 @@ import {
NDivider,
NInput,
NInputNumber,
+ NRadio,
+ NRadioButton,
NRadioGroup,
NSelect,
NSpace,
@@ -78,7 +80,22 @@ async function initComponentAdapter() {
);
},
Checkbox: NCheckbox,
- CheckboxGroup: NCheckboxGroup,
+ CheckboxGroup: (props, { attrs, slots }) => {
+ let defaultSlot;
+ if (Reflect.has(slots, 'default')) {
+ defaultSlot = slots.default;
+ } else {
+ const { options } = attrs;
+ if (Array.isArray(options)) {
+ defaultSlot = () => options.map((option) => h(NCheckbox, option));
+ }
+ }
+ return h(
+ NCheckboxGroup,
+ { ...props, ...attrs },
+ { default: defaultSlot },
+ );
+ },
DatePicker: NDatePicker,
// 自定义默认按钮
DefaultButton: (props, { attrs, slots }) => {
@@ -98,7 +115,28 @@ async function initComponentAdapter() {
},
Input: withDefaultPlaceholder(NInput, 'input'),
InputNumber: withDefaultPlaceholder(NInputNumber, 'input'),
- RadioGroup: NRadioGroup,
+ RadioGroup: (props, { attrs, slots }) => {
+ let defaultSlot;
+ if (Reflect.has(slots, 'default')) {
+ defaultSlot = slots.default;
+ } else {
+ const { options } = attrs;
+ if (Array.isArray(options)) {
+ defaultSlot = () =>
+ options.map((option) =>
+ h(attrs.isButton ? NRadioButton : NRadio, option),
+ );
+ }
+ }
+ const groupRender = h(
+ NRadioGroup,
+ { ...props, ...attrs },
+ { default: defaultSlot },
+ );
+ return attrs.isButton
+ ? h(NSpace, { vertical: true }, () => groupRender)
+ : groupRender;
+ },
Select: withDefaultPlaceholder(NSelect, 'select'),
Space: NSpace,
Switch: NSwitch,
diff --git a/apps/web-naive/src/locales/langs/en-US/demos.json b/apps/web-naive/src/locales/langs/en-US/demos.json
index 9fdffc76..839fc2e6 100644
--- a/apps/web-naive/src/locales/langs/en-US/demos.json
+++ b/apps/web-naive/src/locales/langs/en-US/demos.json
@@ -2,6 +2,7 @@
"title": "Demos",
"naive": "Naive UI",
"table": "Table",
+ "form": "Form",
"vben": {
"title": "Project",
"about": "About",
diff --git a/apps/web-naive/src/locales/langs/zh-CN/demos.json b/apps/web-naive/src/locales/langs/zh-CN/demos.json
index 79b54fa2..e0d7e616 100644
--- a/apps/web-naive/src/locales/langs/zh-CN/demos.json
+++ b/apps/web-naive/src/locales/langs/zh-CN/demos.json
@@ -2,6 +2,7 @@
"title": "演示",
"naive": "Naive UI",
"table": "Table",
+ "form": "表单",
"vben": {
"title": "项目",
"about": "关于",
diff --git a/apps/web-naive/src/router/routes/modules/demos.ts b/apps/web-naive/src/router/routes/modules/demos.ts
index cf565880..d0631cb5 100644
--- a/apps/web-naive/src/router/routes/modules/demos.ts
+++ b/apps/web-naive/src/router/routes/modules/demos.ts
@@ -31,6 +31,14 @@ const routes: RouteRecordRaw[] = [
path: '/demos/table',
component: () => import('#/views/demos/table/index.vue'),
},
+ {
+ meta: {
+ title: $t('demos.form'),
+ },
+ name: 'Form',
+ path: '/demos/form',
+ component: () => import('#/views/demos/form/basic.vue'),
+ },
],
},
];
diff --git a/apps/web-naive/src/views/demos/form/basic.vue b/apps/web-naive/src/views/demos/form/basic.vue
new file mode 100644
index 00000000..bc40d5b9
--- /dev/null
+++ b/apps/web-naive/src/views/demos/form/basic.vue
@@ -0,0 +1,106 @@
+
+
+
+
+
+ 设置表单值
+
+
+
+
+