-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
kuanghua
committed
Nov 21, 2022
1 parent
b1a9432
commit bc33afe
Showing
16 changed files
with
176 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ strict-peer-dependencies=false | |
###aliyun address | ||
registry = https://registry.npmmirror.com | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Layout from '@/layout/index.vue' | ||
const charts = { | ||
path: '/charts', | ||
component: Layout, | ||
meta: { title: 'Charts', icon: 'clipboard' }, | ||
alwaysShow: true, | ||
children: [ | ||
{ | ||
path: 'index', | ||
component: () => import('@/views/charts/index.vue'), | ||
name: 'Index', | ||
meta: { title: 'Index' } | ||
} | ||
] | ||
} | ||
|
||
export default charts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Layout from '@/layout/index.vue' | ||
const excel = { | ||
path: '/excel', | ||
component: Layout, | ||
meta: { title: 'Excel', icon: 'pdf' }, | ||
alwaysShow: true, | ||
children: [ | ||
{ | ||
path: 'index', | ||
component: () => import('@/views/excel/index.vue'), | ||
name: 'Index', | ||
meta: { title: 'Index' } | ||
} | ||
] | ||
} | ||
|
||
export default excel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Layout from '@/layout/index.vue' | ||
const guid = { | ||
path: '/guid', | ||
component: Layout, | ||
meta: { title: 'Guid', icon: 'theme' }, | ||
alwaysShow: true, | ||
children: [ | ||
{ | ||
path: 'index', | ||
component: () => import('@/views/guid/index.vue'), | ||
name: 'Index', | ||
meta: { title: 'Index' } | ||
} | ||
] | ||
} | ||
|
||
export default guid |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Layout from '@/layout/index.vue' | ||
const other = { | ||
path: '/other', | ||
component: Layout, | ||
meta: { title: 'Other', icon: 'eye-open' }, | ||
alwaysShow: true, | ||
children: [ | ||
{ | ||
path: 'index', | ||
component: () => import('@/views/other/index.vue'), | ||
name: 'Index', | ||
meta: { title: 'Index' } | ||
} | ||
] | ||
} | ||
|
||
export default other |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Layout from '@/layout/index.vue' | ||
const richText = { | ||
path: '/rich-text', | ||
component: Layout, | ||
meta: { title: 'Rich Text', icon: 'clipboard' }, | ||
alwaysShow: true, | ||
children: [ | ||
{ | ||
path: 'index', | ||
component: () => import('@/views/rich-text/index.vue'), | ||
name: 'Index', | ||
meta: { title: 'Index' } | ||
} | ||
] | ||
} | ||
|
||
export default richText |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Layout from '@/layout/index.vue' | ||
const table = { | ||
path: '/table', | ||
component: Layout, | ||
meta: { title: 'Table', icon: 'table' }, | ||
alwaysShow: true, | ||
children: [ | ||
{ | ||
path: 'index', | ||
component: () => import('@/views/table/index.vue'), | ||
name: 'Index', | ||
meta: { title: 'Index' } | ||
} | ||
] | ||
} | ||
|
||
export default table |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<template> | ||
<div>chart</div> | ||
</template> | ||
|
||
<script setup lang="ts"></script> | ||
|
||
<style scoped lang="scss"></style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<template> | ||
<div>excel</div> | ||
</template> | ||
|
||
<script setup lang="ts"></script> | ||
|
||
<style scoped lang="scss"></style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<template> | ||
<div>guid</div> | ||
</template> | ||
|
||
<script setup lang="ts"></script> | ||
|
||
<style scoped lang="scss"></style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<template> | ||
<div>other</div> | ||
</template> | ||
|
||
<script setup lang="ts"></script> | ||
|
||
<style scoped lang="scss"></style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<template> | ||
<div>rich-text</div> | ||
</template> | ||
|
||
<script setup lang="ts"></script> | ||
|
||
<style scoped lang="scss"></style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<template> | ||
<div>table</div> | ||
</template> | ||
|
||
<script setup lang="ts"></script> | ||
|
||
<style scoped lang="scss"></style> |