mirror of
https://github.com/MarcZierle/photo-log-frontend.git
synced 2025-04-09 13:54:37 +00:00
19 lines
334 B
Vue
19 lines
334 B
Vue
<template>
|
|
<div class="home">
|
|
<img alt="Vue logo" src="../assets/logo.png" />
|
|
<HelloWorld msg="Willkommen to MEINE Vue.js App" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
// @ is an alias to /src
|
|
import HelloWorld from "@/components/HelloWorld.vue";
|
|
|
|
export default {
|
|
name: "Home",
|
|
components: {
|
|
HelloWorld,
|
|
},
|
|
};
|
|
</script>
|