解决方法:
子组件接受父组件传值,使用watch监听加载

 props: {
    mapPop: {
      type: Boolean,
    },
  },
  watch: {
    mapPop() {
      this.$nextTick(() => {
        this.init();
        this.carinode();
      });
    },
  },

Logo

前往低代码交流专区

更多推荐