_uuid.vue 255 B

12345678910111213141516171819
  1. <template>
  2. <div class="container">
  3. <span style="font-size: 24px;">{{uuid}}</span>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. layout: 'main',
  9. data () {
  10. return {
  11. uuid: this.$route.params.uuid
  12. }
  13. }
  14. }
  15. </script>
  16. <style>
  17. </style>