mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-23 03:25:15 +00:00
StrategySelect -> script setup
This commit is contained in:
parent
1cc8f910c2
commit
e2624cea54
|
@ -20,18 +20,15 @@
|
|||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
<script setup lang="ts">
|
||||
import { useBotStore } from '@/stores/ftbotwrapper';
|
||||
import { defineComponent, computed, onMounted } from 'vue';
|
||||
import { computed, onMounted } from 'vue';
|
||||
|
||||
export default defineComponent({
|
||||
name: 'StrategySelect',
|
||||
props: {
|
||||
const props = defineProps({
|
||||
modelValue: { type: String, required: true },
|
||||
showDetails: { default: false, required: false, type: Boolean },
|
||||
},
|
||||
emits: ['update:modelValue'],
|
||||
setup(props, { emit }) {
|
||||
});
|
||||
const emit = defineEmits(['update:modelValue']);
|
||||
const botStore = useBotStore();
|
||||
|
||||
const strategyCode = computed((): string => botStore.activeBot.strategy?.code);
|
||||
|
@ -50,13 +47,6 @@ export default defineComponent({
|
|||
botStore.activeBot.getStrategyList();
|
||||
}
|
||||
});
|
||||
return {
|
||||
botStore,
|
||||
strategyCode,
|
||||
locStrategy,
|
||||
};
|
||||
},
|
||||
});
|
||||
</script>
|
||||
|
||||
<style></style>
|
||||
|
|
Loading…
Reference in New Issue
Block a user