You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,8 @@ You will need Nodejs LTS v14.16.x, VSCode, Vetur, and pnpm package manager.
21
21
22
22
- If you want to test building the app locally, run `pnpm run build`. This will generate the `dist` directory which contains all the codes for the app to run from CDN or web server. You can test the built codes in the `dist` with `pnpm run serve`. However, changes won't be updated on the app with this command.
23
23
24
+
Please see `README.md` in the respective directories of `src` to see what the respective directory contains.
Copy file name to clipboardExpand all lines: src/components/README.md
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -4,26 +4,26 @@ This directory contains components - building blocks used in the Code-Generator
4
4
5
5
## components description
6
6
7
-
-[`CodeBlock.vue`](CodeBlock.vue) – This component is used to display the _code_ with respective syntax highlightning and line numbers. This is used in [`PaneRight.vue`](PaneRight.vue).
7
+
-[`CodeBlock.vue`](CodeBlock.vue) – This component is used to display the **code** with respective syntax highlightning and line numbers. This is used in [`PaneRight.vue`](PaneRight.vue).
8
8
9
-
-[`FormCheckbox.vue`](FormCheckbox.vue) – This component is used to display the _checkbox_ with its respective label. This is used in [`TabHandlers.vue`](TabHandlers.vue) and [`TabTraining.vue`](TabTraining.vue).
9
+
-[`FormCheckbox.vue`](FormCheckbox.vue) – This component is used to display the **checkbox** with its respective label. This is used in [`TabHandlers.vue`](TabHandlers.vue) and [`TabTraining.vue`](TabTraining.vue).
10
10
11
-
-[`FormInput.vue`](FormInput.vue) – This component is used to display the _input box_ with its respective label. This is used in [`TabHandlers.vue`](TabHandlers.vue), [`TabLoggers.vue`](TabLoggers.vue), and [`TabTraining.vue`](TabTraining.vue).
11
+
-[`FormInput.vue`](FormInput.vue) – This component is used to display the **input box** with its respective label. This is used in [`TabHandlers.vue`](TabHandlers.vue), [`TabLoggers.vue`](TabLoggers.vue), and [`TabTraining.vue`](TabTraining.vue).
12
12
13
-
-[`FormSelect.vue`](FormSelect.vue) – This component is used to display the _select dropdown_ with its respective label and options. This is used in [`TabLoggers.vue`](TabLoggers.vue) and [`TabModel.vue`](TabModel.vue).
13
+
-[`FormSelect.vue`](FormSelect.vue) – This component is used to display the **select dropdown** with its respective label and options. This is used in [`TabLoggers.vue`](TabLoggers.vue) and [`TabModel.vue`](TabModel.vue).
14
14
15
-
-[`NavBar.vue`](NavBar.vue) – This component is used to display the _navigation bar (header image, name, download button, and external links)_ of the app. This is used in [`App.vue`](../App.vue).
15
+
-[`NavBar.vue`](NavBar.vue) – This component is used to display the **navigation bar (header image, name, download button, and external links)** of the app. This is used in [`App.vue`](../App.vue).
16
16
17
-
-[`PaneLeft.vue`](PaneLeft.vue) – This component is used to display the _left_ pane of the app which includes tab heading and show the respective tab contents.
17
+
-[`PaneLeft.vue`](PaneLeft.vue) – This component is used to display the **left** pane of the app which includes tab heading and show the respective tab contents.
18
18
19
-
-[`PaneRight.vue`](PaneRight.vue) – This component is used to display the _right_ pane of the app which includes tab heading and show the respective tab contents.
19
+
-[`PaneRight.vue`](PaneRight.vue) – This component is used to display the **right** pane of the app which includes tab heading and show the respective tab contents.
20
20
21
-
-[`PaneSplit.vue`](PaneSplit.vue) – This component is used to display the _main pane_ of the app (excludes navigation bar) which includes the space for left pane, middle split line, and the space of right pane. It does not display any content, it occupies the space needed for left pane, split line, and right pane. And then, in the [`App.vue`](../App.vue), [`PaneLeft.vue`](PaneLeft.vue) takes up the left pane and show content. Same goes for [`PaneRight.vue`](PaneRight.vue).
21
+
-[`PaneSplit.vue`](PaneSplit.vue) – This component is used to display the **main pane** of the app (excludes navigation bar) which includes the space for left pane, middle split line, and the space of right pane. It does not display any content, it occupies the space needed for left pane, split line, and right pane. And then, in the [`App.vue`](../App.vue), [`PaneLeft.vue`](PaneLeft.vue) takes up the left pane and show content. Same goes for [`PaneRight.vue`](PaneRight.vue).
22
22
23
-
-[`TabHandlers.vue`](TabHandlers.vue) – This components shows the content of _handlers_ tab of the app.
23
+
-[`TabHandlers.vue`](TabHandlers.vue) – This components shows the content of **handlers** tab of the app.
24
24
25
-
-[`TabLoggers.vue`](TabLoggers.vue) – This components shows the content of _loggers_ tab of the app.
25
+
-[`TabLoggers.vue`](TabLoggers.vue) – This components shows the content of **loggers** tab of the app.
26
26
27
-
-[`TabModel.vue`](TabModel.vue) – This components shows the content of _model_ tab of the app.
27
+
-[`TabModel.vue`](TabModel.vue) – This components shows the content of **model** tab of the app.
28
28
29
-
-[`TabTraining.vue`](TabTraining.vue) – This components shows the content of _training_ tab of the app.
29
+
-[`TabTraining.vue`](TabTraining.vue) – This components shows the content of **training** tab of the app.
0 commit comments