ExtraNewlinesBetweenBlocks.vue 208 B

12345678910111213141516171819202122232425
  1. <script>
  2. export default {
  3. props: {
  4. name: {
  5. type: String
  6. }
  7. }
  8. };
  9. </script>
  10. <template>
  11. <div class="widget">Hello {{name}}</div>
  12. </template>
  13. <style>
  14. .widget {
  15. color: red;
  16. }
  17. </style>