60 lines
1,007 B
Vue
60 lines
1,007 B
Vue
|
<template>
|
||
|
<div :class="
|
||
|
disabled
|
||
|
? 'button-wrapper disabled'
|
||
|
: 'button-wrapper'
|
||
|
">
|
||
|
<button @click="onClick">{{ label }}</button>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import CodeFormatter from "./scripts/codeFormatter";
|
||
|
|
||
|
export default {
|
||
|
props: {
|
||
|
disabled: { type: Boolean },
|
||
|
onClick: { type: Function },
|
||
|
label: { type: String }
|
||
|
}
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
.button-wrapper {
|
||
|
position: relative;
|
||
|
display: block;
|
||
|
max-width: 400px;
|
||
|
min-width: 180px;
|
||
|
margin: 0 auto;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.button-wrapper.disabled button {
|
||
|
background-color: rgb(165, 165, 165);
|
||
|
cursor: not-allowed;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
border: none;
|
||
|
outline: none;
|
||
|
background-color: #2eb9e2;
|
||
|
-webkit-appearance: none;
|
||
|
-moz-appearance: none;
|
||
|
appearance: none;
|
||
|
border-radius: 0;
|
||
|
margin: 0;
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
padding: 6px 15px;
|
||
|
font-size: 14px;
|
||
|
color: white;
|
||
|
font-weight: bold;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
button:hover {
|
||
|
background-color: #3fc1e9;
|
||
|
}
|
||
|
</style>
|