App.vue 463 Bytes
Newer Older
何虹's avatar
何虹 committed
1 2
<template>
  <div id="app">
何虹's avatar
何虹 committed
3
    <HelloWorld msg="Welcome to Your Vue.js App" />
何虹's avatar
何虹 committed
4 5 6 7
  </div>
</template>

<script>
何虹's avatar
何虹 committed
8
import HelloWorld from "./components/HelloWorld.vue";
何虹's avatar
何虹 committed
9 10

export default {
何虹's avatar
何虹 committed
11
  name: "App",
何虹's avatar
何虹 committed
12 13 14
  components: {
    HelloWorld
  }
何虹's avatar
何虹 committed
15
};
何虹's avatar
何虹 committed
16 17 18 19 20 21 22 23 24 25 26 27
</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>