任一存 1 năm trước cách đây
mục cha
commit
4e5b127b87
1 tập tin đã thay đổi với 21 bổ sung0 xóa
  1. 21 0
      src/views/MoreContent.vue

+ 21 - 0
src/views/MoreContent.vue

@@ -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>