123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <div class="content">
- <router-view></router-view>
- </div>
- </template>
- <script setup>
- import { ref, reactive, provide } from 'vue'
- let pay_info = reactive({})
- let post_Id = ref('')
- provide('pay_info', pay_info)
- provide('post_Id', post_Id)
- let state = reactive({
- //
- show: 'dialog-home'
- })
- </script>
- <style lang="scss" >
- html,
- body,
- #app {
- width: 100%;
- height: 100%;
- margin: 0;
- padding: 0;
- }
- body {
- background-color: rgba(0, 0, 0, 0.5);
- }
- .content {
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- </style>
|