Showing
3 changed files
with
53 additions
and
2 deletions
@@ -26,6 +26,32 @@ const component = { | @@ -26,6 +26,32 @@ const component = { | ||
26 | result: result | 26 | result: result |
27 | }); | 27 | }); |
28 | }); | 28 | }); |
29 | + }, | ||
30 | + letterList: (req, res, next) => { | ||
31 | + res.json( | ||
32 | + [ | ||
33 | + { | ||
34 | + id: 'A', | ||
35 | + name: 'A' | ||
36 | + }, | ||
37 | + { | ||
38 | + id: 'B', | ||
39 | + name: 'B' | ||
40 | + }, | ||
41 | + { | ||
42 | + id: 'C', | ||
43 | + name: 'C' | ||
44 | + }, | ||
45 | + { | ||
46 | + id: 'D', | ||
47 | + name: 'D' | ||
48 | + }, | ||
49 | + { | ||
50 | + id: 'E', | ||
51 | + name: 'E' | ||
52 | + } | ||
53 | + ] | ||
54 | + ); | ||
29 | } | 55 | } |
30 | }; | 56 | }; |
31 | 57 |
@@ -27,7 +27,32 @@ | @@ -27,7 +27,32 @@ | ||
27 | </style> | 27 | </style> |
28 | <script> | 28 | <script> |
29 | module.exports = { | 29 | module.exports = { |
30 | - props: ['items'] | 30 | + data: function () { |
31 | + return { | ||
32 | + items: [ | ||
33 | + { | ||
34 | + id: 'A', | ||
35 | + name: 'A' | ||
36 | + }, | ||
37 | + { | ||
38 | + id: 'B', | ||
39 | + name: 'B' | ||
40 | + }, | ||
41 | + { | ||
42 | + id: 'C', | ||
43 | + name: 'C' | ||
44 | + }, | ||
45 | + { | ||
46 | + id: 'D', | ||
47 | + name: 'D' | ||
48 | + }, | ||
49 | + { | ||
50 | + id: 'E', | ||
51 | + name: 'E' | ||
52 | + } | ||
53 | + ] | ||
54 | + } | ||
55 | + } | ||
31 | }; | 56 | }; |
32 | 57 | ||
33 | </script> | 58 | </script> |
-
Please register or login to post a comment