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. aaronsmith
    A
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 5
    • Best 0
    • Groups 0

    aaronsmith

    @aaronsmith

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

    aaronsmith Follow

    Latest posts made by aaronsmith

    • How to use vue-google-adsense in quasar?

      Since there is not main.js, I added a new file in the boot folder with “quasar new boot vue-google-adsense” and imported adsense in that file. Now, when i list it in the quasar.conf.js file inside of boot, it is showing error “error during render
      ReferenceError: window is not defined”.

      posted in CLI
      A
      aaronsmith
    • RE: How i can set canonical url and image meta tag on Quasar Meta Plugin?

      Try this

      link: [
      {rel: ‘canonical’, href: ‘yourwebsiteurl’}
      ]

      This worked for me!!!

      posted in Framework
      A
      aaronsmith
    • RE: Buttons and functions are not working after deployment on Ubuntu server

      Found the reason, this is happening because I have used v-show. v-show will always be rendered and remain in the DOM. v-show only toggles the display CSS property of the element For now i have avoided using v-show.

      posted in Framework
      A
      aaronsmith
    • RE: Buttons and functions are not working after deployment on Ubuntu server

      Hey guys,

      I searched online but there is very less information about quasar. Can you help me by sharing a tutorial or something like that? To make you understand the issue deeply, here original vue website: https://binarytotext.net/, and here is quasar build: http://138.68.61.240/

      posted in Framework
      A
      aaronsmith
    • Buttons and functions are not working after deployment on Ubuntu server

      Hello there,

      I’m new to quasar. On my local host, everything works just fine when i check but when I deploy my website functions and buttons are not working while the designs and every other thing seems perfect. Initially, I built this website with vuejs but then to get benefit of SSR, I opted for quasar. I have also deployed my vuejs website but everything works fine there. Now, my question is,

      1. Is there anything else or alternative in Quasar for buttons, functions, v-ifs and that’s why they are not working?

      2. Is there a different nginx configuaration ? This is my nginx configuration,
        server {
        listen 80;
        listen 443 ssl;

        server_name mywebsite.com www.mywebsite.com;

        location / {
        proxy_pass http://127.0.0.1:3000/;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection ‘upgrade’;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }
        }

      3. Or Anything that you want to suggest?

      posted in Framework
      A
      aaronsmith