|
@@ -0,0 +1,21 @@
|
|
|
|
+<template>
|
|
|
|
+ <div class="asdf" />
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script setup>
|
|
|
|
+import { ref, computed, watch, onMounted, onBeforeUnmount, 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>
|
|
|
|
+.asdf{
|
|
|
|
+
|
|
|
|
+}
|
|
|
|
+</style>
|