initial chart checkin
This commit is contained in:
16
src/layouts/chart/ChartLayout.vue
Normal file
16
src/layouts/chart/ChartLayout.vue
Normal file
@@ -0,0 +1,16 @@
|
||||
<template>
|
||||
<v-app>
|
||||
<nav-drawer/>
|
||||
<main-view/>
|
||||
<footer/>
|
||||
</v-app>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import MainView from './MainView.vue'
|
||||
import NavDrawer from "@/components/NavDrawer.vue";
|
||||
import Footer from "@/components/Footer.vue";
|
||||
import {useStore} from "@/store/store.js";
|
||||
|
||||
const s = useStore()
|
||||
</script>
|
||||
15
src/layouts/chart/MainView.vue
Normal file
15
src/layouts/chart/MainView.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<template>
|
||||
<v-main>
|
||||
<Alerts/>
|
||||
<chart-view/>
|
||||
</v-main>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import Alerts from "@/components/Alerts.vue";
|
||||
import ChartView from "@/views/ChartView.vue";
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@use 'src/styles/vars' as *;
|
||||
</style>
|
||||
@@ -1,9 +1,9 @@
|
||||
<template>
|
||||
<v-app>
|
||||
<app-bar/>
|
||||
<nav-drawer/>
|
||||
<main-view/>
|
||||
<footer/>
|
||||
<nav-drawer/>
|
||||
<Footer/>
|
||||
</v-app>
|
||||
</template>
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
<template>
|
||||
<v-main>
|
||||
<v-container class="pa-0">
|
||||
<v-container class="pa-0 ma-0">
|
||||
<div>
|
||||
<Alerts/>
|
||||
<!-- <Breakpoints/>-->
|
||||
<router-view/>
|
||||
<v-skeleton-loader v-if="!store.chainInfo" type="card" class="order-card"/> <!--todo static chainInfo -->
|
||||
</div>
|
||||
</v-container>
|
||||
</v-main>
|
||||
|
||||
Reference in New Issue
Block a user