cli3-init

Former-commit-id: c2208822160c869725ca1e2d8090efe8a26ef205 [formerly c2208822160c869725ca1e2d8090efe8a26ef205 [formerly c2208822160c869725ca1e2d8090efe8a26ef205 [formerly c2208822160c869725ca1e2d8090efe8a26ef205 [formerly 9d32806619ec7dfd268d8d1d489788a4b93ef8f2 [formerly a0b8d05dbd65ff11909125a63f47863d9943338b]]]]]
Former-commit-id: 5318442d566c59f1669e14f467c8c6308155b2a3
Former-commit-id: 0a29bf225a6b939c13728547e95135d23cd6fbb2
Former-commit-id: 75bc94d9ae5e57f7d78974b65a11c5ec36a7d07d [formerly 8e22212a884eb010c619bf4eac6fa06b52005cf5]
Former-commit-id: a00d38cadcd10bae7c00c0a7034dbe6d6b2e2060
Former-commit-id: 4cbc35132e5844bcff3b59c9bfcb505642fecf42
Former-commit-id: c4ab1140d261a2a9193657dc381e5094e007eaa3
Former-commit-id: 56c01e286f6c12116c7075a6a67a19b6d9ad5011
Former-commit-id: 34106a945900d8125f21e803b450b0e9591f0d53
This commit is contained in:
liyang
2018-07-16 10:54:24 +08:00
parent 1d310c9c7d
commit db72c5b7f5
18 changed files with 301 additions and 0 deletions

5
src/views/About.vue Normal file
View File

@@ -0,0 +1,5 @@
<template>
<div class="about">
<h1>This is an about page</h1>
</div>
</template>

18
src/views/Home.vue Normal file
View File

@@ -0,0 +1,18 @@
<template>
<div class="home">
<img src="../assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js App"/>
</div>
</template>
<script>
// @ is an alias to /src
import HelloWorld from '@/components/HelloWorld.vue'
export default {
name: 'home',
components: {
HelloWorld
}
}
</script>