When making a new version of the configuration interface, I used the vue framework to implement it. When configuring the page image, I found that there was a picture whose path was correct but the picture was not displayed. Phenomenon: The network page resources do not report an error, and the status code is still 200. There is nothing in the preview. After entering, I found that 200 appears for any word I enter. Solution: Configure the path of static resources in webpack 1. Find vue.config.js 2. Add a key in devServer under module.exports contentBase:path.join(_dirname,'src') This means that webpack-dev-server will use the current path as the requested resource path About contentBase, reference article https://www.jb51.net/article/222324.htm Static resources: Method 1: Directly enter the path <img class="sys_logo" src="./assets/images/top-logo.png"/> Method 2: Using require import logoUrl from './top-logo.png' const Images = { logoUrl } export default Images Method 3: Modularization import logoUrl from './top-logo.png' const Images = { logoUrl } export default Images use: js: import Images from './assets/images' html: <img class="sys_logo" :src="Images.logoUrl" /> This is the end of this article about the solution to the problem of images not displaying on vue pages. For more information about the problem of images not displaying on vue pages, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of nginx configuration file interpretation
>>: MySQL database operations (create, select, delete)
Mine is: <!DOCTYPE html> Blog Garden: <!...
Table of contents 01 Container consistency 02 Con...
1. The ul tag has a padding value by default in Mo...
Use canvas to create graphics and text with shado...
Preface When using Docker in a production environ...
Table of contents 1. Introduction 2. Aggregation ...
Set the table's style="table-layout:fixed...
Table of contents 1. Import files 2. HTML page 3....
■ Website theme planning Be careful not to make yo...
A web designer's head must be filled with a lo...
Introduction to Linux top command The top command...
This article describes how to install Apache on a...
Detailed explanation of mysql exists and not exis...
Table of contents 1. What is a template string? 2...
On Linux, bash is adopted as the standard, which ...