File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change
1
+ <template >
2
+ <button >{{ title }}</button >
3
+ </template >
4
+
5
+ <script >
6
+ export default {
7
+ props: [' title' ],
8
+ data : () => {
9
+ return {
10
+ //
11
+ };
12
+ },
13
+ };
14
+ </script >
15
+
16
+ <style lang="scss" scoped></style >
Original file line number Diff line number Diff line change 12
12
to =" /projects"
13
13
class =" font-general-medium flex items-center px-6 py-3 rounded-xl shadow-lg hover:shadow-xl bg-indigo-500 hover:bg-indigo-600 focus:ring-1 focus:ring-indigo-900 text-white text-lg sm:text-xl"
14
14
aria-label =" More Projects"
15
- >More Projects</router-link
16
15
>
16
+ <Button title =" More Projects" />
17
+ </router-link >
17
18
</div >
18
19
</div >
19
20
</template >
20
21
21
22
<script >
22
23
import AppBanner from ' @/components/shared/AppBanner' ;
23
24
import ProjectsGrid from ' ../components/projects/ProjectsGrid.vue' ;
25
+ import Button from ' ../components/reusable/Button.vue' ;
24
26
25
27
export default {
26
28
name: ' Home' ,
27
29
components: {
28
30
AppBanner,
29
31
ProjectsGrid,
32
+ Button,
30
33
},
31
34
};
32
35
</script >
You can’t perform that action at this time.
0 commit comments