Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

App.vue 449B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div id="app">
  3. <router-view v-if="isRouterAlive"></router-view>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: "App",
  9. data () {
  10. return {
  11. isRouterAlive: true
  12. }
  13. }, methods: {
  14. reload () {
  15. this.isRouterAlive = false
  16. this.$nextTick(function () {
  17. this.isRouterAlive = true
  18. })
  19. }
  20. }
  21. };
  22. </script>
  23. <style>
  24. body .el-table th.gutter {
  25. display: table-cell !important;
  26. }
  27. </style>