mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-11 02:33:51 +00:00
23 lines
486 B
Vue
23 lines
486 B
Vue
|
<template>
|
||
|
<b-container fluid>
|
||
|
<b-row v-if="whitelist.length > 0">
|
||
|
<b-col cols="12" md="3"></b-col>
|
||
|
<b-col></b-col>
|
||
|
<b-col cols="12" md="3">
|
||
|
<pre class="text-start"><code>{{ whitelist }}</code></pre>
|
||
|
</b-col>
|
||
|
</b-row>
|
||
|
<b-row v-else>
|
||
|
<b-col>
|
||
|
<p>Evaluation returned 0 pairs</p>
|
||
|
</b-col>
|
||
|
</b-row>
|
||
|
</b-container>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
const props = defineProps<{
|
||
|
whitelist: string[];
|
||
|
}>();
|
||
|
</script>
|