代码部分
<template>
<p class="register__user-wrapper font-size-default border-box relative">
/* register__user-active 表示当前页面激活的 a 标签 */
<a class="register__user register__user-active absolute" id="register__personal-user">个人用户</a>
<a class="register__user absolute right-0" id="register__enterprise-user">企业用户</a>
</p>
</template>
<style>
.register__user-wrapper {
width: 100%;
height: 57px;
margin-bottom: 31px;
border-radius: 8px;
padding: 3px;
background-color: #ededed;
}
.register__user {
width: 212px;
height: 51px;
line-height: 51px;
border-radius: 8px;
text-align: center;
background-color: transparent;
color: #4c4c4c;
}
.register__user-active {
background-color: #fff;
cursor: pointer;
}
</style>
已经自己解决了。