mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-11 10:43:52 +00:00
29 lines
568 B
Vue
29 lines
568 B
Vue
<template>
|
|
<Container>
|
|
<Header />
|
|
<Body />
|
|
</Container>
|
|
</template>
|
|
|
|
<script lang='ts'>
|
|
import { Component, Vue } from 'vue-property-decorator';
|
|
import Container from '@/components/layout/Container.vue';
|
|
import Header from '@/components/layout/Header.vue';
|
|
import Body from '@/components/layout/Body.vue';
|
|
|
|
@Component({
|
|
components: { Container, Header, Body },
|
|
})
|
|
export default class App extends Vue {}
|
|
</script>
|
|
|
|
<style>
|
|
/* Global styles - populating to child elementes */
|
|
.card-header {
|
|
font-size: 1.3em;
|
|
}
|
|
.card-body {
|
|
overflow: auto;
|
|
}
|
|
</style>
|