innovate 发表于 2023-7-27 11:12:29

vue使用wj-flex-grid-column报警告错误


<template>
    <div class="container-fluid">
      <!-- the grid -->
      <wj-flex-grid
            :itemsSource="data" :initialized="initializeGrid">
            <wj-flex-grid-column binding="id" header="Id" :width="95" :wordWrap="true" :isReadOnly="true"/>   
      </wj-flex-grid>
    </div>
</template>
以上代码运行时,浏览器会报警告错误: Listener added for a synchronous 'DOMNodeInserted' DOM Mutation Event. This event type is deprecated (https://w3c.github.io/uievents/#legacy-event-types) and work is underway to remove it from this browser. Usage of this event listener will cause performance issues today, and represents a risk of future incompatibility. Consider using MutationObserver instead.主要是因为我这里使用了<wj-flex-grid-column>标签

Richard.Ma 发表于 2023-7-27 11:55:51

这个可能是vue框架中使用的相关接口的警告,可以忽略
页: [1]
查看完整版本: vue使用wj-flex-grid-column报警告错误