26 lines
226 B
Vue
26 lines
226 B
Vue
<template>
|
|
<div class="home">
|
|
|
|
<h3>Home View</h3>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
// @ is an alias to /src
|
|
|
|
|
|
export default {
|
|
name: "Home",
|
|
components: {
|
|
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.home {
|
|
|
|
}
|
|
</style>
|