12345678910111213141516171819202122232425 |
- <template>
- <div
- class="home"
- >
- </div>
- </template>
- <script setup>
- import { ref, computed, watch, onMounted, inject } from "vue"
- import { useRoute, useRouter } from "vue-router"
- import { useStore } from "vuex"
- const route = useRoute()
- const router = useRouter()
- const store = useStore()
- const $env = inject('$env')
- </script>
- <style lang="less" scoped>
- .home {
- width: 100%;
- height: 100%;
- }
- </style>
|