Commit ffa90f07cb90083d8646f6fb6d6bb114393541d6

Authored by ly525
1 parent 2f1132b4

docs: add english document

README.en.md
1   -English | [简体中文](./README.md)
  1 +[Online English Document](https://www.yuque.com/liuyan-ew1qk/oh5d0n?language=en-us) | [简体中文](./README.md)
  2 +
  3 +
  4 +<p align="left">
  5 +<a href="https://github.com/ly525/luban-h5/releases"><img alt="GitHub release (latest by date)" src="https://img.shields.io/github/v/release/ly525/luban-h5"></a>
  6 +</p>
  7 +
2 8  
3 9 ### What's LuBan-H5?
4   -> LuBan-H5 is a mobile page builder based on Vue.js, which is similar with http://www.eqxiu.com、[Baidu-H5](https://h5.bce.baidu.com/). It also supports parsing PSD file to HMTL5 Page
  10 +> LuBan-H5 is a mobile page builder based on Vue.js, which is similar with [Amolink](www.amolink.com) [eqx](http://www.eqxiu.com)(it's a chinese website, you may need to translate the page). It also supports parsing PSD file to HMTL5 Page
5 11  
6 12 ### Screenshots
7   -![image](https://user-images.githubusercontent.com/12668546/61186568-974b1c80-a699-11e9-831b-a87a506699b9.png)
  13 +<img src="https://user-images.githubusercontent.com/12668546/64076899-3df88480-ccfd-11e9-877b-8e6a86888da3.png" style="margin: 10px;" width="60%" />
  14 +<img src="https://user-images.githubusercontent.com/12668546/64076911-6d0ef600-ccfd-11e9-9376-e65a42478853.png" style="margin: 10px;" width="60%" />
  15 +<img src="https://user-gold-cdn.xitu.io/2019/8/17/16ca02d61136ed30?imageslim" style="margin: 10px;" width="60%" />
  16 +<img src="https://user-images.githubusercontent.com/12668546/63207252-4f367400-c0f5-11e9-952a-9a3f6f72a710.png" style="margin: 10px;" width="60%"/>
  17 +
8 18  
9 19  
10   -###Features 功能
  20 +### Features
11 21 1. Editor
12 22 - [x] Reference Line/GuideLine
13 23 - [x] Adsorption Line
... ... @@ -49,9 +59,7 @@ English | [简体中文](./README.md)
49 59  
50 60 ### Installs
51 61 > proj: project root path
52   -
53   - 1. Front End
54   - Editor: please refer to: [`project/front-end/h5/README.md`](https://github.com/ly525/luban-h5/blob/dev/front-end/h5/README.md)
  62 +please refer to: [`Document/Quick Start`](https://www.yuque.com/liuyan-ew1qk/oh5d0n/gpfy6g)
55 63  
56 64  
57 65 ---
... ... @@ -60,7 +68,10 @@ English | [简体中文](./README.md)
60 68 1. `lbp-`: `lu-ban-plugin-`, means `Luban H5 plugin`, location: `proj/front-end/h5/src/components/plugins`
61 69  
62 70  
63   -#### Technology Stack (current)
  71 +#### Build With (current)
64 72 1. Front end: Vue.js
65 73 2. Back End: Strapi
66   - 3. Storage: Sqlite
67 74 \ No newline at end of file
  75 + 3. Storage: Sqlite
  76 +
  77 +
  78 +Read more here [Online English Document](https://www.yuque.com/liuyan-ew1qk/oh5d0n?language=en-us)
68 79 \ No newline at end of file
... ...
docs/.vuepress/config.js
... ... @@ -74,6 +74,7 @@ module.exports = {
74 74 // ga: '',
75 75 themeConfig: {
76 76 nav: [
  77 + { text: 'Document(En)', link: 'https://www.yuque.com/liuyan-ew1qk/oh5d0n?language=en-us' },
77 78 { text: 'Website', link: 'https://ly525.github.io/luban-h5' },
78 79 ],
79 80 versions: [
... ...
front-end/h5/src/components/common/header/links.js
... ... @@ -12,9 +12,6 @@ export default {
12 12 defaultSelectedKeys={['2']}
13 13 style={{ lineHeight: '64px', display: 'inline-block', float: 'right' }}
14 14 >
15   - <a-menu-item key="document">
16   - <a href="https://ly525.github.io/luban-h5" target="_blank" rel="noopener" style={{ color: 'white' }}><a-icon type="read" />文档</a>
17   - </a-menu-item>
18 15 <a-menu-item key="dingtalk" >
19 16 <a-popover title="👨🏻‍💻👩🏻‍💻欢迎加入鲁班-H5交流群">
20 17 <template slot="content">
... ... @@ -26,6 +23,12 @@ export default {
26 23 <span style={{ color: 'white', lineHeight: '64px', height: '64px', display: 'inline-block' }}><a-icon type="qrcode" />交流群</span>
27 24 </a-popover>
28 25 </a-menu-item>
  26 + <a-menu-item key="document">
  27 + <a href="https://ly525.github.io/luban-h5" target="_blank" rel="noopener" style={{ color: 'white' }}><a-icon type="read" />文档</a>
  28 + </a-menu-item>
  29 + <a-menu-item key="document-en">
  30 + <a href="https://www.yuque.com/liuyan-ew1qk/oh5d0n?language=en-us" target="_blank" rel="noopener" style={{ color: 'white' }}><a-icon type="read" />Document(En)</a>
  31 + </a-menu-item>
29 32 <a-menu-item key="github">
30 33 <a href="https://github.com/ly525/luban-h5" target="_blank" rel="noopener" style={{ color: 'white' }}><a-icon type="github" />Github</a>
31 34 </a-menu-item>
... ...