create-pubinfo-pr 0.221.3 → 0.222.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-pubinfo-pr",
3
3
  "type": "module",
4
- "version": "0.221.3",
4
+ "version": "0.222.2",
5
5
  "description": "初始化项目框架",
6
6
  "author": "Werheng <werheng.zhang@gmail.com>",
7
7
  "license": "MIT",
@@ -27,7 +27,7 @@
27
27
  },
28
28
  "dependencies": {
29
29
  "@inquirer/prompts": "^8.2.0",
30
- "@pubinfo-pr/shared": "0.221.3",
30
+ "@pubinfo-pr/shared": "0.222.2",
31
31
  "ansi-colors": "^4.1.3",
32
32
  "cfonts": "^3.3.1",
33
33
  "commander": "^14.0.3",
@@ -2,7 +2,7 @@
2
2
  import { useLoginTabs } from '../composables';
3
3
 
4
4
  defineOptions({
5
- name: 'LoginFrom',
5
+ name: 'LoginForm',
6
6
  });
7
7
 
8
8
  const { tabs, initialTab, changeActiveTab } = useLoginTabs();
@@ -1,5 +1,5 @@
1
1
  <script setup lang="ts">
2
- import LoginFrom from './components/LoginForm.vue';
2
+ import LoginForm from './components/LoginForm.vue';
3
3
 
4
4
  defineOptions({
5
5
  name: 'Login',
@@ -94,7 +94,7 @@ const designDescription = [
94
94
  justify-center
95
95
  pt="20vh"
96
96
  >
97
- <LoginFrom />
97
+ <LoginForm />
98
98
  </div>
99
99
  </div>
100
100
  </div>
@@ -1,5 +1,4 @@
1
1
  import { defineAsyncRoutes, defineSystemRoutes } from 'pubinfo-pr';
2
- import Login from '@/views/system/login/index.vue';
3
2
 
4
3
  import Breadcrumb from './modules/demo/breadcrumb.example';
5
4
  import Link from './modules/demo/link';
@@ -62,7 +61,7 @@ export const constantRoutes = [
62
61
  {
63
62
  path: '/login',
64
63
  name: 'Login',
65
- component: Login,
64
+ component: () => import('@/views/system/login/index.vue'),
66
65
  meta: {
67
66
  whiteList: true,
68
67
  title: '登录',
@@ -2,7 +2,7 @@
2
2
  import { useLoginTabs } from '../composables';
3
3
 
4
4
  defineOptions({
5
- name: 'LoginFrom',
5
+ name: 'LoginForm',
6
6
  });
7
7
 
8
8
  const { tabs, initialTab, changeActiveTab } = useLoginTabs();
@@ -1,5 +1,5 @@
1
1
  <script setup lang="ts">
2
- import LoginFrom from './components/LoginForm.vue';
2
+ import LoginForm from './components/LoginForm.vue';
3
3
 
4
4
  defineOptions({
5
5
  name: 'Login',
@@ -94,7 +94,7 @@ const designDescription = [
94
94
  justify-center
95
95
  pt="20vh"
96
96
  >
97
- <LoginFrom />
97
+ <LoginForm />
98
98
  </div>
99
99
  </div>
100
100
  </div>
@@ -2,7 +2,7 @@
2
2
  import { useLoginTabs } from '../composables';
3
3
 
4
4
  defineOptions({
5
- name: 'LoginFrom',
5
+ name: 'LoginForm',
6
6
  });
7
7
 
8
8
  const { tabs, initialTab, changeActiveTab } = useLoginTabs();
@@ -1,5 +1,5 @@
1
1
  <script setup lang="ts">
2
- import LoginFrom from './components/LoginForm.vue';
2
+ import LoginForm from './components/LoginForm.vue';
3
3
 
4
4
  defineOptions({
5
5
  name: 'Login',
@@ -94,7 +94,7 @@ const designDescription = [
94
94
  justify-center
95
95
  pt="20vh"
96
96
  >
97
- <LoginFrom />
97
+ <LoginForm />
98
98
  </div>
99
99
  </div>
100
100
  </div>