| 12345678910111213141516171819 |
- <template>
- <div class="container">
- <span style="font-size: 24px;">{{uuid}}</span>
- </div>
- </template>
- <script>
- export default {
- layout: 'main',
- data () {
- return {
- uuid: this.$route.params.uuid
- }
- }
- }
- </script>
- <style>
- </style>
|