No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. asaf097
    A
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 5
    • Best 0
    • Groups 0

    asaf097

    @asaf097

    0
    Reputation
    1
    Profile views
    5
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    asaf097 Follow

    Latest posts made by asaf097

    • RE: Changing q-card bg-color using methods

      @metalsadman i try that before i didnt help 😞

      posted in Help
      A
      asaf097
    • 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!

      posted in Help
      A
      asaf097
    • 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

      posted in [v1] App Extensions
      A
      asaf097
    • 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

      posted in [v1] App Extensions
      A
      asaf097
    • 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 done

      i am not native speaker if someone is struggling with me EN
      thank you all 🙂

      posted in [v1] App Extensions
      A
      asaf097