Sharkey/src/client/app/common/views/components/cw-button.vue

41 lines
738 B
Vue
Raw Normal View History

2018-09-13 12:01:50 +03:00
<template>
<button class="nrvgflfuaxwgkxoynpnumyookecqrrvh" @click="toggle">{{ value ? this.$t('hide') : this.$t('show') }}</button>
2018-09-13 12:01:50 +03:00
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
2018-09-13 12:01:50 +03:00
export default Vue.extend({
i18n: i18n('common/views/components/cw-button.vue'),
2018-09-13 12:01:50 +03:00
props: {
value: {
type: Boolean,
required: true
}
},
methods: {
toggle() {
this.$emit('input', !this.value);
}
}
});
</script>
<style lang="stylus" scoped>
2018-09-26 20:02:07 +03:00
.nrvgflfuaxwgkxoynpnumyookecqrrvh
2018-09-13 12:01:50 +03:00
display inline-block
padding 4px 8px
font-size 0.7em
2018-09-26 20:02:07 +03:00
color var(--cwButtonFg)
background var(--cwButtonBg)
2018-09-13 12:01:50 +03:00
border-radius 2px
cursor pointer
user-select none
&:hover
2018-09-26 20:02:07 +03:00
background var(--cwButtonHoverBg)
2018-09-13 12:01:50 +03:00
</style>