mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-11 10:43:52 +00:00
30 lines
397 B
Vue
30 lines
397 B
Vue
<template>
|
|
<div class="row">
|
|
<label class="col-4">{{ description }}</label>
|
|
<div class="col-8">
|
|
<slot></slot>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
export default {
|
|
name: 'ValuePair',
|
|
props: {
|
|
description: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
label {
|
|
font-weight: bold;
|
|
}
|
|
.row {
|
|
max-width: 50em;
|
|
}
|
|
</style>
|