<template>
<button>button</button>
</template>
<style scoped>
button {
height: 32px;
display: flex;
justify-content: center;
align-items: center;
font-size: 14px;
cursor: pointer;
user-select: none;
padding: 8px 15px;
border-radius: 4px;
border: none;
box-sizing: border-box;
color: #fff;
background-color: #409eff;
margin: auto;
}
button:hover{
background-color: #67c23a ;
}
</style>