How to introduce pictures more elegantly in Vue pages

How to introduce pictures more elegantly in Vue pages

When we write vue projects, we will definitely use various pictures, so how can we better use picture resources? Here I will talk about the method I often use.

Error demonstration

Maybe you often write this in your code

<template>
    <img :src="src">
</template>
<script>
    export default{
        data(){
            return {
               src: require('xxx.jpg')
            }
        }
    }
</script>

In webpack, require will automatically process resources, which is fine. However, when you put it in vue's data, vue will traverse the data and add responsiveness to src. But most of the time, this src does not need to be responsive, which causes performance waste.

By computed

To solve the above error solution, one of the solutions is: computed

<template>
    <img :src="src">
</template>
<script>
   const src = require('xxx.jpg')
    export default{
        computed:{
           src(){
             return src
           }
        }
    }
</script>

Compute itself has a cache, which can reduce some performance waste

When the image does not change, import it directly

<template>
    <img :src="src">
</template>

or

<template>
    <div class="bg"></div>
</template>

<style>
 .bg{
 background:url("xxx.jpg")
 }
</style>

When our image does not change, we can import it directly without assigning a variable.

Similarly, you can also dynamically display images by switching class names, which is also better.

<template>
    <div :class="flag ? 'bg1':'bg2'"></div>
</template>
<script>
    export default{
     data(){
            return {
               flag: true
            }
        }
    }
</script>
<style>
 .bg1{
 background:url("xxx1.jpg")
 }
 .bg2{
 background:url("xxx2.jpg")
 }
</style>

Switching images via CSS variables

This is just an idea that I just thought of. Theoretically, CSS variables can store anything, so can they store image addresses?

<template>
    <div class="bg"></div>
</template>
<script>
    export default{
        mounted(){
           // The first method, image address or base64
           this.$el.style.setProperty('--bg',`url("http://xxx.com/1.jpg")`)
           // The second method this.$el.style.setProperty('--bg',`url("${require('../assets/1.png')}")`)
           
        }
    }
</script>    
<style>
 .bg{
     --bg:url('xxx.jpg');
     background-image:--bg;
 }
</style>

My personal test was successful, this method is also available, and it is better than computed, after all, operating CSS variables costs less. What needs to be noted in this method is that images in CSS are generally written in URLs, so you need to concatenate a string URL (your content).

Drawing via CSS

This is actually a digression. Sometimes some images can actually be drawn using CSS. For example, the triangle in the picture below. If you search on Baidu, you will find various CSS triangle generators. This kind of graphic is better drawn using CSS than introducing a picture.

To sum up, don't introduce pictures in vue's data, and try to use css

Summarize

This is the end of this article about how to introduce pictures more elegantly in Vue pages. For more relevant content about how to introduce pictures more elegantly in Vue, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of several ways to introduce image paths in Vue.js
  • Vue's three image import code examples
  • How to introduce img images into Vue pages

<<:  Summary of learning HTML tags and basic elements

>>:  How to build a SOLO personal blog from scratch using Docker

Recommend

Docker MQTT installation and use tutorial

Introduction to MQTT MQTT (Message Queuing Teleme...

Script example for starting and stopping spring boot projects in Linux

There are three ways to start a springboot projec...

Simple usage example of vue recursive component

Preface I believe many students are already famil...

Implementation of Docker deployment of Django+Mysql+Redis+Gunicorn+Nginx

I. Introduction Docker technology is very popular...

Zen coding resource update function enhancement

Official website: http://code.google.com/p/zen-cod...

Detailed steps for building a React application with a Rails API

Table of contents Backend: Rails API part Front-e...

How to deploy Confluence and jira-software in Docker

version: centos==7.2 jdk==1.8 confluence==6.15.4 ...

Linux common text processing commands and vim text editor

Today, let's introduce several common text pr...

CSS achieves colorful and smart shadow effects

background Ever wondered how to create a shadow e...

Detailed explanation of the use of Teleport in Vue3

Table of contents Purpose of Teleport How Telepor...

Very practical Tomcat startup script implementation method

Preface There is a scenario where, for the sake o...

How to regularly clean up docker private server images

Using CI to build docker images for release has g...

Ideas and codes for implementing Vuex data persistence

What is vuex vuex: is a state manager developed s...

Detailed tutorial on installation and configuration of nginx under Centos7

Note: The basic directory path for software insta...