HelloWorld.vue 434 Bytes
Newer Older
何虹's avatar
何虹 committed
1 2
<template>
  <div class="hello">
何虹's avatar
何虹 committed
3
    <hsInput></hsInput>
何虹's avatar
.  
何虹 committed
4
    <hsTable></hsTable>
何虹's avatar
何虹 committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
  </div>
</template>

<script>
export default {
  name: 'HelloWorld',
  props: {
    msg: String
  }
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h3 {
  margin: 40px 0 0;
}
ul {
  list-style-type: none;
  padding: 0;
}
li {
  display: inline-block;
  margin: 0 10px;
}
a {
  color: #42b983;
}
</style>