Vue多层通信,图片显示不出来,出现display:none !important

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>vue多层组件间通信</title>
</head>
<body>
<div id="app">
    <mparent :imgsrc="img" :title="title"></mparent>
</div>

<template id="img_child">
    <img :src="imgsrc" width="200" height="200">
</template>

<template id="title_child">
    <h2>{{title}}</h2>
</template>

<template id="my_parent">
    <div>
        <child1 :imgsrc="imgsrc"></child1>
        <child2 :title="title"></child2>
    </div>
</template>

<script src="js/vue.js"></script>
<script>
    //js相关代码

    //子组件的实例
    let childImg = Vue.extend({
        template: '#img_child',
        props: ['imgsrc']
    });

    let childTitle = Vue.extend({
        template: '#title_child',
        props: ['title']
    });

    //注册父组件
    Vue.component('mparent', {
        props: ['imgsrc', 'title'],
        components: {
            'child1': childImg,
            'child2': childTitle
        },
        template: '#my_parent'
    });

    new Vue({
        el: '#app',
        //Vue 实例的数据对象
        data: {
            img: 'img/ad.png',
            title: '真好啊'
        },
    });
</script>

</body>
</html>
阅读 2.5k
2 个回答
新手上路,请多包涵

用的你的代码 没有问题啊 能出来图片和文字啊

新手上路,请多包涵

看看你浏览器是否安装了拦截广告的插件,把ad.png当成广告了

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏