diff --git a/src/pages/JsDemo.vue b/src/pages/JsDemo.vue
new file mode 100644
index 0000000..fff3a71
--- /dev/null
+++ b/src/pages/JsDemo.vue
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+ {{ res }}
+
+
+
\ No newline at end of file
diff --git a/src/router/index.ts b/src/router/index.ts
index 6fb6583..fb5a3a2 100644
--- a/src/router/index.ts
+++ b/src/router/index.ts
@@ -33,7 +33,12 @@ const router = createRouter({
path: '/DataForm01',
name: 'DataForm01',
component: () => import('@/pages/DataForm01.vue')
- }
+ },
+ {
+ path: '/JsDemo',
+ name: 'JsDemo',
+ component: () => import('@/pages/JsDemo.vue')
+ },
]
})