App.vue 387 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <div id="app">
  3. <router-view/>
  4. </div>
  5. </template>
  6. <script>
  7. import { uaredirect } from '@/utils/uaredirect.js'
  8. export default {
  9. name: 'App',
  10. created: function() {
  11. console.log('Created uaredirect')
  12. uaredirect()
  13. }
  14. }
  15. </script>
  16. <style>
  17. .el-popup-parent--hidden {
  18. overflow: initial !important;
  19. padding-right: 0 !important;
  20. }
  21. p {
  22. margin: 0;
  23. }
  24. </style>