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
32 lines
467 B
<template>
|
|
<div class="tag">
|
|
<span class="tag-label">大傻逼</span>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'yzz',
|
|
props: {
|
|
label: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.tag {
|
|
display: inline-block;
|
|
background-color: #007bff;
|
|
color: #fff;
|
|
border-radius: 4px;
|
|
padding: 4px 8px;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.tag-label {
|
|
font-size: 14px;
|
|
}
|
|
</style>
|