<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>
以上代码运行时,浏览器会报警告错误:[Deprecation] 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>标签 |
|