vp-hero-content.vue 576 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div class="hero-content">
  3. <Content />
  4. </div>
  5. <el-divider style="margin-bottom: 0" />
  6. <div class="text-center py-6 text-xs">
  7. <p class="mb-1">
  8. Released under the
  9. <a
  10. href="https://opensource.org/licenses/MIT"
  11. target="_blank"
  12. rel="noopener noreferer"
  13. >MIT License</a
  14. >.
  15. </p>
  16. <p class="mt-1">
  17. Made with ❤️ by
  18. <a
  19. href="https://github.com/element-plus"
  20. target="_blank"
  21. rel="noopener noreferer"
  22. >Element Plus</a
  23. >
  24. </p>
  25. </div>
  26. </template>