mirror of
https://github.com/Spythere/genera-tor.git
synced 2026-05-04 05:58:12 +00:00
refactor: new order structure, added new order instructions (wip)
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
<template>
|
||||
<div class="order" :class="{ dark: store.orderDarkMode }">
|
||||
<OrderHeader />
|
||||
<OrderMainContent />
|
||||
<OrderFooter />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { useStore } from '../../store/store';
|
||||
import OrderHeader from './OrderHeader.vue';
|
||||
import OrderMainContent from './OrderMainContent.vue';
|
||||
import OrderFooter from './OrderFooter.vue';
|
||||
|
||||
const store = useStore();
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@use '../../styles/order';
|
||||
</style>
|
||||
Reference in New Issue
Block a user