123456789101112131415161718192021222324252627282930313233 |
- <template>
- <div class="hello">
- <p>
- 都喜欢啊啊 </p>
- </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>
|