KnowledgePoint.vue 494 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="knowledge_point"> {{ text }} </div>
  3. </template>
  4. <script>
  5. export default {
  6. props: {
  7. text: String
  8. },
  9. }
  10. </script>
  11. <style scoped lang="scss">
  12. .knowledge_point {
  13. font-size: 14px;
  14. line-height: 20px;
  15. color: #3BA272;
  16. border: 1px solid #3BA272;
  17. background-color: rgba(#3BA272, 0.1);
  18. text-align: center;
  19. padding: 3px 10px;
  20. display: inline-block;
  21. border-radius: 4px;
  22. user-select: none;
  23. margin-right: 10px;
  24. }
  25. </style>