How to emite on-change event for the e8-form-table-column with a lookup in the column template?

Grid column with lookup.
On-change event for lookup doesn’t emit on-change event for the <e8-form-table>.

How to emit on-change event for the <e8-form-table> with a value row.uom from <e8-form-lookup>?

<e8-form-table-column
    internal-id="uom"
    width="100px"
    min-width="100px"
    max-width="100px"
    label-horizontal-alignment="center">
    <template #default="{ row, index }">
        <e8-form-lookup
            v-model="row.uom"
            :lazy-sync="false"
            :label="false"
            source="lstUnitsOfMeasure"
            placeholder="UOM">
        </e8-form-lookup>
    </template>
</e8-form-table-column>