vue3.0 无法显示 相对路径的图片

错误方式:

 

正确方式:

import logoUrl from '../../assets/img/logo.png';

data() {

    return logoUrl,

}

 

你可能感兴趣的:(前端)