1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

Additions

This commit is contained in:
2020-05-07 17:45:04 +02:00
parent d1b83fd148
commit 7b4c55dd62
13 changed files with 164 additions and 65 deletions

View File

@@ -1,32 +1,45 @@
<template>
<div id="app">
<img alt="Vue logo" src="logo.png">
<HelloWorld :msg="$store.state.application.appName" />
<div id="wrapper">
<!-- <TheHeader @toggleSidebar="toggleSidebar" /> -->
<!-- <TheSidebar /> -->
<div id="main-content">
<!-- <BaseLoaderLayer
id="main-loader"
:is-loading="isLoading"
/> -->
<QueryEditor v-model="query" />
</div>
<!-- <TheFooter /> -->
</div>
</template>
<script>
import HelloWorld from './components/HelloWorld.vue';
import QueryEditor from '@/components/QueryEditor';
export default {
name: 'App',
components: {
HelloWorld
QueryEditor
},
data () {
return {
query: ''
};
},
computed: {
isLoading () {
return this.$store.state.application.isLoading;
}
},
methods: {
}
};
</script>
<style>
body{
background: #FFFFFF;
}
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
html,
body{
height: 100%;
background: #fff;
}
</style>