微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

动态更改外部组件的 props

如何解决动态更改外部组件的 props

我是 VueJS 的新手,不幸的是我不知道如何更改此外部组件 vue-compare-two-images-component:leftimage:rightimage 道具。 它正在工作,然后道具值设置为 null。但是如果 props 得到一个图像 src,它们就不会对新的值变化做出反应。

我的目标是根据按钮点击动态更改道具值。 有人知道如何实现这一目标吗?

<template>
    <ClientOnly>
        <img :src="imageBefore" > 
        <ul>
            <li><button class="button is-primary"  @click="Audi()">audi</button></li>
            <li><button class="button is-primary"  @click="Tesla()">tesla</button></li>
            <li><button class="button is-primary"  @click="Porsche()">porsche</button></li>
            <li><button class="button is-primary"  @click="reset()">resel all</button></li>
        </ul>
        <compare-two-images v-if="imageBefore"  
            :leftimage="imageBefore"
            :rightimage="imageAfter">
        </compare-two-images>
    </ClientOnly>
</template>
export default {
  name: 'Image Before-After',components: { CompareTwoImages },data () {  
    return {
          imageBefore: null,// default null or some src
          imageAfter: null,}
  },methods: {
        reset(){
            this.imageBefore= null,this.imageAfter= null
      },Audi(){
            this.imageBefore =  '/assets/audi-before.jpg',this.imageAfter =  '/assets/audi-after.jpg'
        },Tesla(){
            this.imageBefore = '/assets/tesla-before.jpg',this.imageAfter = '/assets/tesla-after.jpg'
        },Porsche(){ 
            this.imageBefore = '/assets/porsche-before.jpg',this.imageAfter = '/assets/porsche-after.jpg'
        }
  }
}
</script>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。