Ration.vue 287 B

12345678910111213
  1. <script setup lang="ts">
  2. import { onMounted, ref } from "vue";
  3. import { useRouter } from "vue-router";
  4. const router = useRouter();
  5. router.back();
  6. </script>
  7. <template>
  8. <article class="ration-page">定额库</article>
  9. </template>
  10. <style lang="scss" src="./style.scss" scoped></style>