BernhardtD / vue-sorted-table

A basic sorted table for Vue.js.
MIT License
33 stars 4 forks source link

initial sort #1

Closed RezaErfani67 closed 5 years ago

RezaErfani67 commented 5 years ago

i have table with date/time field... at the first load of table, values not sorted... image

<SortedTable class="table table-sm" :values="listItems">
                                    <thead>
                                    <tr>
                                        <th scope="col">
                                            <SortLink name="date">date</SortLink>
                                        </th>
                                    </tr>
                                    </thead>
                                    <tbody slot="body" slot-scope="sort">
                                    <tr v-for="item in sort.values">

                                        <td>{{item.date}}</td>
                                    </tr>
                                    </tbody>
                                </SortedTable>
RezaErfani67 commented 5 years ago

oh sorry... i missed default component props :)