@qyloxe ideally there’s an easy way to do this without adding another package…
Latest posts made by coopersamuel
-
RE: How to highlight specific words in q-input
-
How to highlight specific words in q-input
I’m working on a multi box similar to facebook’s post creator. The box has the ability to parse out links and hashtags. For UX purposes, is there an easy way to highlight specific strings within q-input?
Current UX:
Desired UX:
-
RE: Multi Q-Select auto focus on first item in menu
@gusy Nope, unfortunately I don’t think it’s possible right now with quasar
-
RE: q-table rows drag and drop
This is a bummer - any thoughts on this from the quasar folks?
-
RE: PDFJS in vue
For anyone finding this thread trying to use PDFJS with your quasar app, see this comment/thread https://github.com/quasarframework/app-extension-qpdfviewer/issues/5#issuecomment-518041926
Also, don’t forget to import the webpack build from pdfjs-dist
const PDFJS = await import('pdfjs-dist/webpack')
-
Unable to find client-entry dep after upgrade
I just upgraded from v1.0.0-beta.26 to latest with
quasar upgrade -i
. Everything seemed to work fine. But now it’s unable to find the.quasar/client-entry.js
dependency. Any help appreciatedclient_1 | Dev mode.......... spa client_1 | Pkg quasar........ v1.0.5 client_1 | Pkg @quasar/app... v1.0.4 client_1 | Debugging......... enabled client_1 | client_1 | app:extension Running "@quasar/testing-unit-jest" Quasar App Extension... +0ms client_1 | app:extension Running "@quasar/testing-e2e-cypress" Quasar App Extension... +7ms client_1 | app:extension Running "@quasar/testing" Quasar App Extension... +2ms client_1 | app:extension Running "@quasar/qmediaplayer" Quasar App Extension... +3ms client_1 | app:quasar-conf Reading quasar.conf.js +13ms client_1 | app:dev Checking listening address availability (0.0.0.0:8080)... +5ms client_1 | app:quasar-conf Extension(@quasar/qmediaplayer): Extending quasar.conf... +7ms client_1 | App Extension (qmediaplayer) Info: 'Adding qmediaplayer boot reference to your quasar.conf.js' client_1 | App Extension (qmediaplayer) Info: 'Adding media-player.styl css reference to your quasar.conf.js' client_1 | app:webpack Extending SPA Webpack config +442ms client_1 | app:generator Generating Webpack entry point +7ms client_1 | app:dev-server Booting up... +15ms client_1 | client_1 | app:progress Compiling SPA... +177ms client_1 | app:progress Compiled SPA in ~693ms +694ms client_1 | ERROR Failed to compile with 1 errors7:36:49 PM client_1 | client_1 | This dependency was not found: client_1 | client_1 | * /usr/src/client/.quasar/client-entry.js in multi (webpack)-dev-server/client?http://0.0.0.0:8080 (webpack)/hot/dev-server.js ./.quasar/client-entry.js client_1 | client_1 | To install it, you can run: npm install --save /usr/src/client/.quasar/client-entry.js
-
Multi Q-Select auto focus on first item in menu
I’ve got a multi select component similar to this codepen. I’d like it to auto focus on the first item in the list (the best match) in order to select quickly with the
enter
key rather than moving and clicking with the mouse. Any help appreciated -
RE: [SOLVED] Multi Q-Select with an array of objects
@patryckx thanks for the help