ultrawidify/src/common/components/Button.vue

18 lines
309 B
Vue
Raw Normal View History

<template>
<div class="button center-text flex"
2019-06-02 02:44:02 +02:00
:class="{'setting-selected': selected, 'w24': fixedWidth, 'flex-auto': !fixedWidth }"
>
{{label}}
</div>
</template>
<script>
export default {
props: {
fixedWidth: Boolean,
selected: Boolean,
label: String,
}
}
</script>