App.vue 523 Bytes
Newer Older
牛文敏's avatar
init  
牛文敏 committed
1
2
<template>
  <img alt="Vue logo" src="./assets/logo.png">
牛文敏's avatar
init    
牛文敏 committed
3
4
5
  <Suspense>
      <InstallServer msg="Welcome to Your Vue.js App" />
  </Suspense>
牛文敏's avatar
init  
牛文敏 committed
6
7
8
</template>

<script>
牛文敏's avatar
init    
牛文敏 committed
9
import InstallServer from './components/InstallServer.vue'
牛文敏's avatar
init  
牛文敏 committed
10
11
12
13

export default {
  name: 'App',
  components: {
牛文敏's avatar
init    
牛文敏 committed
14
    InstallServer
牛文敏's avatar
init  
牛文敏 committed
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  }
}
</script>

<style>
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>