benchmarkingPage.vue 321 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div class="gatewayPage">
  3. <div class="mainMessage">
  4. gatewayPage
  5. </div>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. }
  13. },
  14. created() {
  15. },
  16. mounted() {
  17. },
  18. methods: {
  19. }
  20. }
  21. </script>
  22. <style>
  23. </style>