initial checkin with timed order ui
This commit is contained in:
11
src/layouts/default/AppBar.vue
Normal file
11
src/layouts/default/AppBar.vue
Normal file
@@ -0,0 +1,11 @@
|
||||
<template>
|
||||
<v-app-bar flat>
|
||||
<v-app-bar-title class="sc">
|
||||
<v-icon icon="mdi-chart-line" />
|
||||
DexOrder
|
||||
</v-app-bar-title>
|
||||
</v-app-bar>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
</script>
|
||||
11
src/layouts/default/Default.vue
Normal file
11
src/layouts/default/Default.vue
Normal file
@@ -0,0 +1,11 @@
|
||||
<template>
|
||||
<v-app>
|
||||
<default-bar />
|
||||
<default-view />
|
||||
</v-app>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import DefaultBar from './AppBar.vue'
|
||||
import DefaultView from './View.vue'
|
||||
</script>
|
||||
10
src/layouts/default/View.vue
Normal file
10
src/layouts/default/View.vue
Normal file
@@ -0,0 +1,10 @@
|
||||
<template>
|
||||
<v-main>
|
||||
<v-container>
|
||||
<router-view />
|
||||
</v-container>
|
||||
</v-main>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
</script>
|
||||
Reference in New Issue
Block a user