temp

<template>
<div>
<h2 style="color:#1c84c6;font-weight: 100">
<el-tag color="#1ab394" :hit="true" type="warning" >项目</el-tag>
#{{proDetail.id}} &nbsp;&nbsp;
{{proDetail.subject}}
</h2>
</div>
</template>

<script>
export default {
name: "viewPro",
data() {
return {
proDetail: {
id: 1,
subject: "性能测试平台项目",
}
}
}
}
</script>

<style scoped>

</style>
原文地址:https://www.cnblogs.com/zipon/p/10186277.html