Cristiano Magro
2025-01-06 a4d58c66334b02f5c055f9b8b1a8938dfaea6317
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>