plm前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
467 B

2 years ago
  1. <template>
  2. <div class="tag">
  3. <span class="tag-label">大傻逼</span>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'yzz',
  9. props: {
  10. label: {
  11. type: String,
  12. required: true
  13. }
  14. }
  15. }
  16. </script>
  17. <style scoped>
  18. .tag {
  19. display: inline-block;
  20. background-color: #007bff;
  21. color: #fff;
  22. border-radius: 4px;
  23. padding: 4px 8px;
  24. margin-right: 8px;
  25. }
  26. .tag-label {
  27. font-size: 14px;
  28. }
  29. </style>