Skip to content

Commit 2858f13

Browse files
committed
♻️ refactor: code
1 parent 1682c6b commit 2858f13

File tree

7 files changed

+1445
-0
lines changed

7 files changed

+1445
-0
lines changed

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,10 @@
3838
"jsencrypt": "^3.3.2",
3939
"layouts": "file:layouts",
4040
"lodash": "^4.17.21",
41+
"marked": "^16.1.1",
4142
"mockjs": "^1.1.0",
4243
"nprogress": "^0.2.0",
44+
"qrcode": "^1.5.4",
4345
"qs": "^6.14.0",
4446
"screenfull": "^5.2.0",
4547
"sortablejs": "^1.15.6",

pnpm-lock.yaml

Lines changed: 107 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/router/index.js

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,30 @@ export const asyncRoutes = [
232232
component: () => import('@/views/vab/more/index'),
233233
meta: { title: '关于', permissions: ['admin'] },
234234
},
235+
{
236+
path: 'chart',
237+
name: 'Chart',
238+
component: () => import('@/views/vab/chart/index'),
239+
meta: { title: '图表', permissions: ['admin'] },
240+
},
241+
{
242+
path: 'tab',
243+
name: 'Tab',
244+
component: () => import('@/views/vab/tab/index'),
245+
meta: { title: '选项卡', permissions: ['admin'] },
246+
},
247+
{
248+
path: 'editor',
249+
name: 'Editor',
250+
component: () => import('@/views/vab/editor/index'),
251+
meta: { title: '编辑器', permissions: ['admin'] },
252+
},
253+
{
254+
path: 'qrCode',
255+
name: 'QrCode',
256+
component: () => import('@/views/vab/qrCode/index'),
257+
meta: { title: '二维码', permissions: ['admin'] },
258+
},
235259
],
236260
},
237261
{

0 commit comments

Comments
 (0)