-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
33 changed files
with
568 additions
and
377 deletions.
There are no files selected for viewing
Empty file.
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,10 @@ | ||
{ | ||
"semi": false, | ||
"singleQuote": true, | ||
"jsxSingleQuote": false, | ||
"tabWidth": 2, | ||
"printWidth": 140, | ||
"trailingComma": "es5", | ||
"bracketSpacing": true, | ||
"jsxBracketSameLine": false | ||
} |
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
Empty file.
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 |
---|---|---|
@@ -1,14 +1,12 @@ | ||
<template> | ||
<div id="app"> | ||
<router-view > | ||
</router-view> | ||
<router-view> </router-view> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'app', | ||
components: { | ||
} | ||
components: {}, | ||
} | ||
</script> |
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,9 @@ | ||
{ | ||
"common": { | ||
"save": "save", | ||
"edit": "edit", | ||
"remove": "remove", | ||
"preview": "preview", | ||
"language": "English" | ||
} | ||
} |
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,9 @@ | ||
{ | ||
"common": { | ||
"save": "保存", | ||
"edit": "编辑", | ||
"remove": "删除", | ||
"preview": "预览", | ||
"language": "中文" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,86 @@ | ||
{ | ||
"children": [ | ||
{ | ||
"title": "表单类", | ||
"name": "form", | ||
"children": [ | ||
{ | ||
"title": "单选框", | ||
"name": "radio" | ||
}, | ||
{ | ||
"title": "多选框", | ||
"name": "checkbox" | ||
}, | ||
{ | ||
"title": "输入框", | ||
"name": "input" | ||
}, | ||
{ | ||
"title": "选择器", | ||
"name": "select" | ||
}, | ||
{ | ||
"title": "时间日期选择器", | ||
"name": "datetimepicker" | ||
}, | ||
{ | ||
"title": "开关", | ||
"name": "switch" | ||
}, | ||
{ | ||
"title": "滑块", | ||
"name": "slider" | ||
}, | ||
{ | ||
"title": "评分", | ||
"name": "rate" | ||
}, | ||
{ | ||
"title": "上传", | ||
"name": "upload" | ||
} | ||
] | ||
}, | ||
{ | ||
"title": "数据类", | ||
"name": "data", | ||
"children": [ | ||
{ | ||
"title": "表格", | ||
"name": "table" | ||
} | ||
] | ||
}, | ||
{ | ||
"title": "通知类", | ||
"name": "notice", | ||
"children": [ | ||
{ | ||
"title": "警告", | ||
"name": "alert" | ||
} | ||
] | ||
}, | ||
{ | ||
"title": "导航类", | ||
"name": "navigation", | ||
"children": [ | ||
{ | ||
"title": "导航菜单", | ||
"name": "menu" | ||
} | ||
] | ||
}, | ||
{ | ||
"title": "其它", | ||
"name": "others", | ||
"children": [ | ||
{ | ||
"title": "对话框", | ||
"name": "dialog" | ||
} | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.