Home vue.js v-img vuetify, does not work with ssr?

v-img vuetify, does not work with ssr?

Author

Date

Category

I make a project on NUXT, I use VUETIFY for UI.
I decided to use the available V-IMG. When inspection by the server generated by the code, I saw that the IMG tag is not generated (if you look through the console already on the open site, this tag is generated correctly.
What about V-IMG and SSR? Has anyone come across such a problem?

& lt; v-img
      : src = "product.image"
      Lazy-Src = "Data: image / gif; base64, r0lgodlhaqabaiaap /// waaach5baeaaaaaaaaaaaaaaaaaaow =="
      Aspect-Ratio = "1"
      Class = "Grey Lighten-2"
      Max-width = "500"
      Max-Height = "300"
    & gt;
      & lt; Template V-Slot: Placeholder & GT;
        & lt; V-ROW Class = "Fill-Height MA-0" Align = "Center" Justify = "Center" & gt;
          & lt; v-progress-circular
            indeterminate.
            Color = "Grey Lighten-5"
          & gt; & lt; / v-progress-circular & gt;
        & lt; / v-row & gt;
      & lt; / template & gt;
    & lt; / v-img & gt;

Answer 1, Authority 100%

Wrap your picture into the Require () function.
Example: : src = "Require (product.image)"

Second version This Wrap V-IMG in No-SSR Tag.

Third option is to use the Static folder for storing pictures if you use pictures locally.

-static
–img

Example path: src = "img / product-image.jpg"

Programmers, Start Your Engines!

Why spend time searching for the correct question and then entering your answer when you can find it in a second? That's what CompuTicket is all about! Here you'll find thousands of questions and answers from hundreds of computer languages.

Recent questions