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>
214
+
<li>Fixed component hierarchy in project exports </li>
215
+
<li>Fixed import statements of route child components</li>
216
+
<li>Fixed edge case HTML element bugs in project exports </li>
217
+
<li>Fixed in app component movement bugs which caused position to not update correctly </li>
218
+
<li>Fixed drag and drop HTML element on click bug</li>
219
+
<li>Eliminated code redundancy by implementing mixins</li>
193
220
</ul>
194
221
</details>
195
222
<br/>
@@ -278,8 +305,19 @@ npm run build
278
305
**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
306
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
307
308
+
If you choose to use VcXsrv, you will need to select a couple options:
309
+
310
+
<ul>
311
+
<li>Launch XLaunch</li>
312
+
<li>Select multiple windows and display number=0.</li>
313
+
<li>Select no client.</li>
314
+
<li>Select Clipboard, Primary Selection, Native opengl, and disable access control.</li>
315
+
<li>If Windows firewall pops up - select Public for this server to work.</li>
316
+
</ul>
317
+
281
318
If you choose to use x410, you will need to set the environment DISPLAY variable on each console:
282
319
320
+
283
321
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.
335
+
```
336
+
npm run dev
337
+
```
296
338
297
-
followed by the command for the s or devmode. If you want both open, enter commands above followed by starting the devtools:
339
+
To launch the Vue devloper tool, use the following command.
298
340
299
341
```
300
342
./node_modules/.bin/vue-devtools
301
343
```
302
344
303
-
Then open a new terminal instance, set the DISPLAY value again (re-enter above command for DISPLAY), and start OverVue in dev mode:
345
+
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
346
305
347
```
306
348
quasar dev -m electron
307
349
```
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.
350
+
**NOTE**:
351
+
<ul>
352
+
<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>
353
+
<li>There might be an npm install error despite all instructions. Try the following command below:</li>
// This file defines extractor functionality that targets the files of an imported component library, generates an array of file paths to each vue component, and parses each component to generate an import object compatible with createComponent
0 commit comments