App.vue 269 B

12345678910111213141516171819
  1. <template>
  2. <router-view/>
  3. </template>
  4. <script setup>
  5. /*import { useI18n } from 'vue-i18n';
  6. const { locale } = useI18n();*/
  7. // 必要时加上去
  8. </script>
  9. <style>
  10. * {
  11. -webkit-overflow-scrolling: touch;
  12. }
  13. * {
  14. -webkit-tap-highlight-color: transparent;
  15. }
  16. </style>