如何查看 Vue.js 组件中的道具变化?

2022-01-25 00:00:00 javascript vue.js vue-component vuejs2

我正在将一组图像文件路径传递给组件.我想知道如果我传递不同的数组,在 Vue.js 组件中观察道具变化的最佳方式是什么?

我正在使用引导轮播,所以想在数组更改时将其重置为第一个图像.为了简单起见,我将代码示例简化为:

Vue.component('my-images', {道具:['图像'],模板:`<部分><div v-for="(image, index) in images">{{index}} - <img :src="image"/></div></部分>`});

解决方案

<template>

{{count}}</div></模板><脚本>导出默认{名称:'测试',道具:['count'],手表: {'$道具':{处理程序:函数(val,oldVal){console.log('watch', val)},深:真}},挂载(){控制台.log(this.count)}}</脚本>

I'm passing an array of image filepaths to a component. I'm wondering what would be the best way to watch a prop change in Vue.js component, if I pass a different array?

I'm using bootstrap carousel, so wanna reset it to first image when array changes. In order for simplicity I reduced code example to this:

Vue.component('my-images', {
  props: ['images'],

  template: `
    <section>
      <div v-for="(image, index) in images">
        {{index}} - <img :src="image"/>
      </div>
    </section>
  `
});

解决方案

<template>
  <div>
    {{count}}</div>
</template>

<script>
export default {
  name: 'test',
  props: ['count'],
  watch: {
    '$props':{
      handler: function (val, oldVal) { 
        console.log('watch', val)
      },
      deep: true
    }
  },
  mounted() {
    console.log(this.count)
  }
}
</script>

相关文章