2018-06-14 00:22:50 +02:00
|
|
|
<template>
|
|
|
|
<div class="ui-button">
|
2018-06-14 02:51:55 +02:00
|
|
|
<button :type="type">
|
2018-06-14 00:22:50 +02:00
|
|
|
<slot></slot>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
export default Vue.extend({
|
|
|
|
props: {
|
|
|
|
type: {
|
|
|
|
type: String,
|
|
|
|
required: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
@import '~const.styl'
|
|
|
|
|
|
|
|
.ui-button
|
|
|
|
> button
|
|
|
|
display block
|
|
|
|
width 100%
|
2018-06-14 07:52:37 +02:00
|
|
|
margin 0
|
2018-06-14 00:22:50 +02:00
|
|
|
padding 0
|
|
|
|
color $theme-color-foreground
|
|
|
|
font-weight bold
|
|
|
|
font-size 16px
|
|
|
|
line-height 44px
|
|
|
|
background $theme-color
|
|
|
|
border none
|
|
|
|
border-radius 6px
|
|
|
|
outline none
|
|
|
|
box-shadow none
|
|
|
|
|
2018-06-14 07:52:37 +02:00
|
|
|
&:hover
|
|
|
|
background lighten($theme-color, 5%)
|
|
|
|
|
|
|
|
&:active
|
|
|
|
background darken($theme-color, 5%)
|
|
|
|
|
2018-06-14 00:22:50 +02:00
|
|
|
</style>
|