We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 456a51e commit 454e7acCopy full SHA for 454e7ac
src/components/About.vue
@@ -9,7 +9,7 @@
9
import feather from 'feather-icons'
10
11
export default {
12
- name: 'Home',
+ name: 'About',
13
props: {
14
msg: String
15
},
src/components/Projects.vue
@@ -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>
+import feather from 'feather-icons'
+export default {
+ name: 'Projects',
+ props: {
+ msg: String
+ },
16
+ mounted() {
17
+ feather.replace();
18
19
+ updated() {
20
21
+ }
22
+}
23
+</script>
24
25
+<style scoped>
26
27
+</style>
0 commit comments