|
6 | 6 | you to integrate this tool into your design process for creating Vue applications.
|
7 | 7 | </p><br>
|
8 | 8 | <h class="tutorial-sub-heading">Navigating OverVue</h>
|
9 |
| - <p class="tutorialContent">If you ever want to navigate back to this page, click the gear icon <img style="vertical-align:middle" alt="Gear" src="../../../assets/gear.png" id="tut-image"> in the top navigation bar, all the way to the right, and select "Getting Started" |
| 9 | + <p class="tutorialContent">If you ever want to navigate back to this page, click the gear icon <img style="vertical-align:middle" alt="Gear" src="../../../assets/gear.png" class="tut-image"> in the top navigation bar, all the way to the right, and select "Getting Started" |
10 | 10 | to return to the landing page.
|
11 | 11 | </p>
|
12 |
| - <p class="tutorialContent">Almost any action in OverVue can be reversed with 'undo' or recreated with 'redo' <img style="vertical-align:middle" alt="Undo-redo" src="../../../assets/undo_redo.png" id="tut-image"> found on |
| 12 | + <p class="tutorialContent">Almost any action in OverVue can be reversed with 'undo' or recreated with 'redo' <img style="vertical-align:middle" alt="Undo-redo" src="../../../assets/undo_redo.png" class="tut-image"> found on |
13 | 13 | the left side of the top navigation bar. You can also utilize keyboard shortcuts (cmd-z or ctrl-z to undo; cmd-y or ctrl-y to redo) to accomplish the same thing as clicking the buttons.
|
14 | 14 | </p>
|
15 | 15 | <p class="tutorialContent">There are three additional buttons on the top navigation bar to utilize: Save, Import and Export.
|
16 | 16 | </p>
|
17 | 17 | <p class="tutorialContent">
|
18 |
| - <img style="vertical-align:middle" alt="save" src="../../../assets/save.png" id="tut-image">Save text here<br> |
19 |
| - <img style="vertical-align:middle" alt="import" src="../../../assets/import.png" id="tut-image">Import text here<br> |
20 |
| - <img style="vertical-align:middle" alt="export" src="../../../assets/export.png" id="tut-image">Export text here<br> |
| 18 | + <img style="vertical-align:middle" alt="save" src="../../../assets/save.png" class="tut-image">Save your OverVue project progress as a JSON file to access it again later<br> |
| 19 | + <img style="vertical-align:middle" alt="import" src="../../../assets/import.png" class="tut-image">Open an existing JSON project file or import an existing Vue component <br> |
| 20 | + <img style="vertical-align:middle" alt="export" src="../../../assets/export.png" class="tut-image">Export boilerplate code for your whole project or a single component<br> |
| 21 | + </p> |
| 22 | + <p class="tutorialContent">In the right sidebar, you'll find the Routes, Project Tree, and Component Details tabs:</p> |
| 23 | + <h class="tutorial-sub-heading">Routes</h> |
| 24 | + <p class="tutorialContent">You can find all your routes in the Routes tab. To add a route, enter the name in the input field and click the ‘+’ or press enter. Once added, you can click on a route to navigate to it. To delete a route, click on the ‘x’ on the right side of the route block. (Note: The default route HomeView cannot be deleted.) |
| 25 | + </p> |
| 26 | + <h class="tutorial-sub-heading">Uploading mockups</h> |
| 27 | + <p class="tutorialContent">You can upload a design mockup in the Routes tab of the right sidebar menu (one mockup per route). Select the route in the Routes tab, open the ‘Upload Mockup’ sub-menu and click ‘Upload Mockup’. To clear the image, click the ‘Clear Image’ button. |
| 28 | + </p> |
| 29 | + <h class="tutorial-sub-heading">Project Tree</h> |
| 30 | + <p class="tutorialContent">You can find a visualization of your app hierarchy in the Project Tree tab of the right sidebar. Routes are blue, components are green. You can also navigate to a component or route by clicking on it in the project tree. |
| 31 | + </p> |
| 32 | + <h class="tutorial-sub-heading">Component Details</h> |
| 33 | + <p class="tutorialContent">Under the component details tab, you can access details about the active/selected component - including a code snippet (live generated boilerplate code), the HTML elements, state, actions or props in the component. |
| 34 | + </p> |
| 35 | + <p class="tutorialContent">In the left sidebar, you’ll find the Component and Store tabs:</p> |
| 36 | + <h class="tutorial-sub-heading">Creating a component from scratch</h> |
| 37 | + <p class="tutorialContent">Under the Create Component menu in the left sidebar, set a component name (required) and optionally select a parent component, and/or html elements to be nested inside the component (see Advanced Functionality to add deeper nesting to html elements). |
| 38 | + </p> |
| 39 | + <h class="tutorial-sub-heading">Editing a component</h> |
| 40 | + <p class="tutorialContent">To update a component, select the component on the canvas and an Update Component menu will appear in the left sidebar. To update the name, enter the new name in the field and click enter. |
| 41 | + </p> |
| 42 | + <h class="tutorial-sub-heading">Deleting a component</h> |
| 43 | + <p class="tutorialContent">To delete a component, select it and click ‘Delete Currently Selected’ in the Update Component menu or press the delete key. |
21 | 44 | </p>
|
22 | 45 | <q-btn
|
23 | 46 | class="tut-btn"
|
@@ -48,6 +71,7 @@ export default {
|
48 | 71 | flex-direction: column;
|
49 | 72 | justify-content: center;
|
50 | 73 | align-items: center;
|
| 74 | + margin: 10px; |
51 | 75 | }
|
52 | 76 |
|
53 | 77 | .tutorialHeading {
|
@@ -75,7 +99,7 @@ export default {
|
75 | 99 | height: auto;
|
76 | 100 | }
|
77 | 101 |
|
78 |
| -#tut-image { |
| 102 | +.tut-image { |
79 | 103 | margin: 4px;
|
80 | 104 | }
|
81 | 105 | </style>
|
0 commit comments