<script>
    import img_index_path from '../../assets/img/index_1.png';
    import img_myself_path from '../../assets/img/myself_0.png';

    // 输出的路径是变化的:“/img/index_1.68c713f2.png”
    // 所以说导入图片路径不能用字符串变量方式来传递参数,必须import导入图片!
    console.log( img_index_path );

    export default {
        name: 'footer',
        data () {
            return {
                img_index_path: img_index_path,
                img_myself_path: img_myself_path
            };
        }

    };
</script>

Logo

前往低代码交流专区

更多推荐