@metalsadman i try that before i didnt help
Latest posts made by asaf097
-
RE: Changing q-card bg-color using methods
-
Changing q-card bg-color using methods
hey devs
i try to create q-btn to change my q-card background color using method which return string of the background color class using v-bind on class i try few things didn’t work
i know is easy maybe i am just stuck<q-card-section class="bg-indigo-3 text-black text-center" :class="changeColor" >
<q-card-section class="bg-indigo-3 text-black text-center" :class="{changeColor ? changeColor : 'bg-indigo-4'" >
this is buttons try ( i had more)
changeColor() { const arrayColors = [ 'bg-lime-4', 'bg-light-green-4', 'bg-teal-3', 'bg-indigo-4', 'bg-red-5', 'bg-deep-orange-5', 'bg-orange-5', 'bg-amber-4', 'bg-blue-grey-4', 'bg-brown-5', 'bg-purple-3', 'bg-pink-4', 'bg-cyan-3' ] const randomNumber = Math.floor(Math.random() * (13 - 1) + 1); console.log(arrayColors[randomNumber]) debugger return arrayColors[randomNumber] // return { 'bg-primary': true } }
and here you can see the method
you can i try return many ways!
thanks for help! -
RE: communication between src to content script BEX
Hey Scott and Allan
as you asked i uploaded a new project which i just make
i will left some notes
https://github.com/asafyeshoa/bridgetest -
RE: communication between src to content script BEX
@s-molinari Hey molinari thank you for respond
i have seen this article and even copied his code and try it for few hours
but still didnt work and they also do different thing than i need, also used keywords which i cant find on quasar api (which i also read twice)i know the way it works and the action i need to do but i didnt work for me
-
communication between src to content script BEX
Hey everyone
I am new Developer switch struggling with BEX bridge
i create me all app i didn’t figure out how i can simply active my content script from my pop by q-btn click?
and second i dont understand is how i can send the data from the Content script once the processing donei am not native speaker if someone is struggling with me EN
thank you all