Something like the Vue Web Components would be really helpful and popular. +1
Latest posts made by Oggo
-
RE: Selectively build single component
-
RE: How to run a Quasar 0.17 project after system migration to 1.0?
I am facing the same problem with npm running 0.17.x app with quasar v1.0.0-rc.4 on linux. Is there a solution with npm? I would not like to switch to yarn
-
RE: @quasar/qcalendar v1.0.0-alpha.2 Release!
Hi @Hawkeye64, qcalender is awesome and the documentation is very nice. I would like to ask you are you using some tool (like vuepress) for the documentation or you have just another quasar project for it?
Thanx in advance and cheers,
Oggo -
RE: QUploader model
Hi @syflex ,
it is great you are ready to help me. So my use case is: i have dynamically created quploader fileds (see the snippet below). What i want to have is when a file get uploaded i need to know to which quploader it belongs. It means i want to have something like a map quploader -->> uploaded file. When i set the uploaded event handler i can either call a function with (file, xhr) parameters, which is helpful but i don’t know from which quploader it is called. If i call my callback function for example fileUploaded(bIndex) i will know which quploader is calling, but there will be no information about the file uploadedAs a visual component i also think quploader is great, but i desperately need something like v-model for this component
Thanx again in advance, every help will be well appreciated.
<div v-for="(bCol, bIndex) in this.dataModel" v-if="isVisibleDiv(bCol)" :key='bIndex' class="col-4"> <q-uploader v-if="isVisibleUploader(bCol)" url="http://myServerUrl.com" extensions=".jpg,.png" @add="fileAdded" @uploaded="fileUploaded"/> </div>
-
RE: QUploader model
Do really someone using this component?!! How do you handle it without model? I’m trying to get it work with maximum 3 images uploaded, but i am failing to find the way how? It’s a showstopper and i consider to change the framework! Is there someone able to give a good advise?
-
QUploader model
Hi guys,
i would like to have something like v-model for a q-uploader, so that when my form is submitted i can get the url of the uploaded file. How can i achieve it? -
RE: Building an Electron File Explorer with Quasar (and Vue)
@Hawkeye64 great work!
I am also interested in Electron development. Currently i am considering strategy for unit and e2e tests? What i found until now is mocha for unit tests and spectron eventually cypress for integration / e2e tests. Which approach would you recommend?Cheers,
Oggo -
RE: Dynamic tabs setup
Thanx guys,
@metalsadman hmmmm it seems to work in your sample, so i will have to drill deeper to find my error. Thanx a lot for the sample!Cheers,
Oggo -
RE: Dynamic tabs setup
Sure, here is the fiddle: https://jsfiddle.net/Oggzter/4t39h7fg/5/
I have no idea how to make the import in the fiddle, but i hope the use case is clear. As soon as i return the array, it works fine. When i use the imported function “getTabsMdl” the tabs are shown, but no tab is selected