| 123456789101112131415161718192021222324252627 |
- <template>
- <div class="knowledge_point"> {{ text }} </div>
- </template>
- <script>
- export default {
- props: {
- text: String
- },
- }
- </script>
- <style scoped lang="scss">
- .knowledge_point {
- font-size: 14px;
- line-height: 20px;
- color: #3BA272;
- border: 1px solid #3BA272;
- background-color: rgba(#3BA272, 0.1);
- text-align: center;
- padding: 3px 10px;
- display: inline-block;
- border-radius: 4px;
- user-select: none;
- margin-right: 10px;
- }
- </style>
|