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