mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-23 11:35:14 +00:00
27 lines
541 B
Vue
27 lines
541 B
Vue
<template>
|
|
<div id="app">
|
|
<Header />
|
|
<Body />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component, Vue } from 'vue-property-decorator';
|
|
import Header from '@/components/layout/Header.vue';
|
|
import Body from '@/components/layout/Body.vue';
|
|
|
|
@Component({
|
|
components: { Header, Body },
|
|
})
|
|
export default class App extends Vue {}
|
|
</script>
|
|
|
|
<style scoped>
|
|
#app {
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
text-align: center;
|
|
}
|
|
</style>
|