antares/src/renderer/App.vue

46 lines
793 B
Vue
Raw Normal View History

2020-04-30 17:48:53 +02:00
<template>
2020-05-07 17:45:04 +02:00
<div id="wrapper">
<!-- <TheHeader @toggleSidebar="toggleSidebar" /> -->
<!-- <TheSidebar /> -->
<div id="main-content">
<!-- <BaseLoaderLayer
id="main-loader"
:is-loading="isLoading"
/> -->
<QueryEditor v-model="query" />
</div>
<!-- <TheFooter /> -->
2020-04-30 17:48:53 +02:00
</div>
</template>
<script>
2020-05-07 17:45:04 +02:00
import QueryEditor from '@/components/QueryEditor';
2020-04-30 17:48:53 +02:00
export default {
name: 'App',
components: {
2020-05-07 17:45:04 +02:00
QueryEditor
},
data () {
return {
query: ''
};
},
computed: {
isLoading () {
return this.$store.state.application.isLoading;
}
},
methods: {
2020-04-30 17:48:53 +02:00
}
};
</script>
<style>
2020-05-07 17:45:04 +02:00
html,
body{
height: 100%;
background: #fff;
}
2020-04-30 17:48:53 +02:00
</style>