mirror of
https://github.com/dataease/dataease.git
synced 2025-03-01 16:13:09 +08:00
47 lines
824 B
Vue
47 lines
824 B
Vue
![]() |
<template>
|
||
|
<button class="v-button">{{ propValue }}</button>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
props: {
|
||
|
propValue: {
|
||
|
type: String,
|
||
|
default: '',
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.v-button {
|
||
|
display: inline-block;
|
||
|
line-height: 1;
|
||
|
white-space: nowrap;
|
||
|
cursor: pointer;
|
||
|
background: #FFF;
|
||
|
border: 1px solid #DCDFE6;
|
||
|
color: #606266;
|
||
|
-webkit-appearance: none;
|
||
|
text-align: center;
|
||
|
box-sizing: border-box;
|
||
|
outline: 0;
|
||
|
margin: 0;
|
||
|
transition: .1s;
|
||
|
font-weight: 500;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
font-size: 14px;
|
||
|
|
||
|
&:active {
|
||
|
color: #3a8ee6;
|
||
|
border-color: #3a8ee6;
|
||
|
outline: 0;
|
||
|
}
|
||
|
|
||
|
&:hover {
|
||
|
background-color: #ecf5ff;
|
||
|
color: #3a8ee6;
|
||
|
}
|
||
|
}
|
||
|
</style>
|