basic.vue 231 B

12345678910111213141516171819
  1. <template>
  2. <h2 class="red">{{msg}}</h2>
  3. </template>
  4. <script>
  5. export default {
  6. data () {
  7. return {
  8. msg: 'Hello from Component A!'
  9. }
  10. }
  11. }
  12. </script>
  13. <style>
  14. comp-a h2 {
  15. color: #f00;
  16. }
  17. </style>