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
- When finished creating, view your code preview under the code preview tab and you can export to a file location of your choice. Below is the exported file structure:
141
+
- When finished creating, view your code preview under the code preview tab and you can export to a file location of your choice. Below is the exported file structure ('*' = only in typescript format, '**' = only in test format:
148
142
149
143
150
144
```
151
145
public/
152
-
index.html
153
146
src/
154
147
assets/
155
148
components/
156
-
UserCreatedComponent1.vue
157
-
UserCreatedComponent2.vue
149
+
(YourNewComponent1.vue)
150
+
(YourNewComponent2.vue)
158
151
...
159
152
router/
160
-
index.js
153
+
index.js/ts
154
+
store/
155
+
index.js/ts
161
156
views/
162
157
HomeView.vue
163
-
UserCreatedRouteComponent1.vue
164
-
UserCreatedRouteComponent2.vue
158
+
(YourNewRoute1.vue)
159
+
(YourNewRoute2.vue)
165
160
...
166
161
App.vue
167
-
main.js
168
-
babel.config.js
162
+
main.js/ts
163
+
tests/
164
+
units**
165
+
.eslintrc.cjs
166
+
env.d.ts*
167
+
babel.config.js/ts
168
+
jest.config.js/ts**
169
+
index.html
169
170
package.json
171
+
vite.config.js/ts
170
172
```
171
173
172
174
- To get a better look at the features and how to use OverVue, take a look at the in-app tutorial!
@@ -189,8 +191,6 @@ package.json
189
191
<li> Refactored codebase, clean-up unused old code, unused files for optimization of Electron build </li>
190
192
<li> Optimize images displayed to take a smaller footprint and increase speeds or older systems </li>
191
193
<li> Slack and Github OAuth feature has been hidden as currently the feature is not working, and is not seeing much use either </li>
192
-
<li> </li>
193
-
<li> </li>
194
194
195
195
196
196
<br>
@@ -202,7 +202,6 @@ package.json
202
202
203
203
<h4><strong>Known Bugs</strong></h4>
204
204
<li> Slack OAuth not working (currently disabled) </li>
205
-
206
205
<li> Canvas tree can only be moved with arrow keys </li>
207
206
<li> Not necessarily a bug, but certain peer dependencies are not updated by their maintainers (ie tesing vue with jest). To update to a new dependency, this requires ample amount of time that we unfortunately did not have</li>
0 commit comments