Yoshie Muranaka | f6bd4c6 | 2020-11-04 13:40:09 -0800 | [diff] [blame] | 1 | <template> |
| 2 | <b-table |
| 3 | hover |
| 4 | show-empty |
| 5 | no-sort-reset |
| 6 | sort-icon-left |
| 7 | responsive="md" |
| 8 | head-variant="light" |
| 9 | table-variant="light" |
| 10 | sort-by="rank" |
| 11 | :items="items" |
| 12 | :fields="fields" |
| 13 | /> |
| 14 | </template> |
| 15 | |
| 16 | <script> |
| 17 | export default { |
| 18 | data() { |
| 19 | return { |
| 20 | items: [ |
| 21 | { |
| 22 | name: 'Veracruz All Natural', |
| 23 | rank: 1, |
| 24 | description: 'Authentic Mexican Food, Smoothies, and Juices' |
| 25 | }, |
| 26 | { |
| 27 | name: 'Torchy\'s Tacos', |
| 28 | rank: 3, |
| 29 | description: 'At Torchy\'s Tacos, we make food that breaks the mold.' |
| 30 | }, |
| 31 | { |
| 32 | name: 'Tacodeli', |
| 33 | rank: 2, |
| 34 | description: 'Tacodeli handcrafts Mexican-inspired, creative tacos with local and organic ingredients topped with award-winning salsas.' |
| 35 | }, |
| 36 | ], |
| 37 | fields: [ |
| 38 | { |
| 39 | key: 'name', |
| 40 | label: 'Name', |
| 41 | sortable: true |
| 42 | }, |
| 43 | { |
| 44 | key: 'rank', |
| 45 | label: 'Rank', |
| 46 | sortable: true |
| 47 | }, |
| 48 | { |
| 49 | key: 'description', |
| 50 | label: 'Description', |
| 51 | sortable: false |
| 52 | } |
| 53 | ] |
| 54 | } |
| 55 | } |
| 56 | } |
| 57 | </script> |