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