Rename aboutme to AboutMe

This commit is contained in:
Raymonzut
2020-04-24 12:39:09 +02:00
parent 440aae1657
commit a16d3d9cfa
2 changed files with 4 additions and 4 deletions
@@ -18,7 +18,7 @@
import me from '../me.js'
export default {
name: 'aboutme',
name: 'AboutMe',
computed: {
age: me.age
}
+3 -3
View File
@@ -1,17 +1,17 @@
<template>
<div id="home">
<h1>Home</h1>
<aboutme/>
<AboutMe></AboutMe>
</div>
</template>
<script>
import aboutme from '@/components/aboutme'
import AboutMe from '@/components/AboutMe'
export default {
name: "Home",
components: {
aboutme
AboutMe
},
}
</script>