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
<li>Fixed routing components in project exports </li>
211
+
<li>Fixed component hierarchy in project exports </li>
212
+
<li>Fixed import statements of route child components</li>
213
+
<li>Fixed edge case HTML element bugs in project exports </li>
214
+
<li>Fixed in app component movement bugs which caused position to not update correctly </li>
193
215
</ul>
194
216
</details>
195
217
<br/>
@@ -278,8 +300,19 @@ npm run build
278
300
**The ability to load the application and/or devtools requires a tool/application to run a linux display as WSL does not have any display drivers since it is based off of just a CLI.
279
301
I recommend X410 (https://x410.dev/), althought it does cost \$15, for ease of use. There are free options such as VcXsrv(https://sourceforge.net/projects/vcxsrv/) that you can get, but requires more set up.**
280
302
303
+
If you choose to use VcXsrv, you will need to select a couple options:
304
+
305
+
<ul>
306
+
<li>Launch XLaunch</li>
307
+
<li>Select multiple windows and display number=0.</li>
308
+
<li>Select no client.</li>
309
+
<li>Select Clipboard, Primary Selection, Native opengl, and disable access control.</li>
310
+
<li>If Windows firewall pops up - select Public for this server to work.</li>
311
+
</ul>
312
+
281
313
If you choose to use x410, you will need to set the environment DISPLAY variable on each console:
282
314
315
+
283
316
So, to open either the Vue devtools or OverVue in dev mode, first start your X Server then enter into the terminal:
Then run the following command to run both OverVue and Vue developer tools.
330
+
```
331
+
npm run dev
332
+
```
296
333
297
-
followed by the command for the s or devmode. If you want both open, enter commands above followed by starting the devtools:
334
+
To launch the Vue devloper tool, use the following command.
298
335
299
336
```
300
337
./node_modules/.bin/vue-devtools
301
338
```
302
339
303
-
Then open a new terminal instance, set the DISPLAY value again (re-enter above command for DISPLAY), and start OverVue in dev mode:
340
+
Then to start only OverVue in developer mode, open a new terminal instance and set the DISPLAY value again (re-enter above command for DISPLAY):
304
341
305
342
```
306
343
quasar dev -m electron
307
344
```
308
-
**NOTE** Electron-deeplink currently does not work on our WSL2 computers and output an error during installing the dependency which prevented the application to open in dev mode. Go to /src-electron/electron-main.js and comment out line 3/import line to bypass error. The developers did not find any impacts on application so far.
345
+
**NOTE**:
346
+
<ul>
347
+
<li>Electron-deeplink currently does not work on our WSL2 computers and output an error during installing the dependency which prevented the application to open in dev mode. Go to /src-electron/electron-main.js and comment out line 3/import line to bypass error. The developers did not find any impacts on application so far.</li>
348
+
<li>There might be an npm install error despite all instructions. Try the following command below:</li>
0 commit comments