CustomBlocks.vue 262 B

123456789101112131415161718192021222324252627
  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>
  18. <custom1>
  19. hello 1
  20. </custom1>
  21. <custom2>
  22. hello 2
  23. </custom2>