commit | author | age | ||
a4d58c | 1 | <template> |
CM | 2 | <ul></ul> |
3 | </template> | |
4 | ||
5 | <script> | |
6 | export default { | |
7 | data(){ | |
8 | return { | |
9 | storedResouces:[ | |
10 | { | |
11 | id:'official-guide', | |
12 | title: 'Official Guide', | |
13 | description: 'The official Vue.js documentation', | |
14 | link: 'https://vuejs.org' | |
15 | }, | |
16 | { | |
17 | id:'google', | |
18 | title: 'Google', | |
19 | description: 'Learn to google...', | |
20 | link: 'https://google.com' | |
21 | }, | |
22 | ] | |
23 | } | |
24 | } | |
25 | } | |
26 | </script> |