Hey there, I'm currently working on creating a table using Element UI. One of my columns has float values, but when I try to make the column sortable, it doesn't sort correctly.
Below is the code for my column:
<el-table-column
label="Total Opportunity"
prop="blood_utilization_opportunity"
sortable
>
<template slot-scope="slotData">
<span>{{slotData.row.blood_utilization_opportunity}}</span>
</template>
</el-table-column>
I've been checking out the Element UI Table-column Attributes, but I can't seem to find the right one to help me sort through floats accurately... Any suggestions?