Skip to content

Commit 454e7ac

Browse files
committed
Create projects component
1 parent 456a51e commit 454e7ac

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

src/components/About.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import feather from 'feather-icons'
1010
1111
export default {
12-
name: 'Home',
12+
name: 'About',
1313
props: {
1414
msg: String
1515
},

src/components/Projects.vue

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<template>
2+
<div class="container mx-auto px-4">
3+
<p>Projects Page</p>
4+
<i data-feather="home"></i>
5+
</div>
6+
</template>
7+
8+
<script>
9+
import feather from 'feather-icons'
10+
11+
export default {
12+
name: 'Projects',
13+
props: {
14+
msg: String
15+
},
16+
mounted() {
17+
feather.replace();
18+
},
19+
updated() {
20+
feather.replace();
21+
}
22+
}
23+
</script>
24+
25+
<style scoped>
26+
27+
</style>

0 commit comments

Comments
 (0)