projects
/
vchess.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
TODO: where to put template: in views/ or components/?
[vchess.git]
/
client
/
src
/
views
/
Home.vue
1
<template>
2
<div class="home">
3
<Home msg="Welcome to Your Vue.js Apppp"/>
4
</div>
5
</template>
6
7
<script>
8
// @ is an alias to /src
9
import HelloWorld from "@/components/HelloWorld.vue";
10
11
export default {
12
name: "home",
13
components: {
14
HelloWorld,
15
}
16
};
17
</script>